09b98b660e134fe276c4f012e1c6a6463df997f9
[openwrt/svn-archive/packages.git] / admin / debootstrap / Makefile
1 #
2 # Copyright (C) 2010 Gianluigi Tiesi <sherpya@netfarm.it>
3 # Copyright (C) 2011-2013 OpenWrt.org
4 #
5 # This is free software, licensed under the GNU General Public License v2.
6 # See /LICENSE for more information.
7 #
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=debootstrap
12 PKG_VERSION:=1.0.55~bpo70+1
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-udeb_$(PKG_VERSION)_all.udeb
16 PKG_SOURCE_URL:=http://ftp.debian.org/debian/pool/main/d/debootstrap
17 PKG_MD5SUM:=86b1cce6350b7beb85d1c5c6fe6910a6
18
19 UNPACK_CMD=ar -p "$(DL_DIR)/$(PKG_SOURCE)" data.tar.xz | xzcat | tar -C $(1) -xf -
20
21 include $(INCLUDE_DIR)/package.mk
22
23 define Package/debootstrap
24 SECTION:=admin
25 CATEGORY:=Administration
26 TITLE:=Bootstrap a basic Debian system
27 URL:=http://wiki.debian.org/Debootstrap
28 DEPENDS:= +coreutils +coreutils-chroot +coreutils-sha1sum
29 endef
30
31 define Package/debootstrap/description
32 debootstrap is used to create a Debian base system from scratch, without
33 requiring the availability of dpkg or apt. It does this by downloading .deb
34 files from a mirror site, and carefully unpacking them into a directory which
35 can eventually be chrooted into.
36 endef
37
38 define Build/Compile
39 # file pkgdetails.c was imported from debian package base-installer version 1.130
40 $(TARGET_CC) $(TARGET_CFLAGS) $(TARGET_LDFLAGS) ./files/pkgdetails.c -o $(PKG_BUILD_DIR)/usr/share/debootstrap/pkgdetails
41 endef
42
43 define Package/debootstrap/install
44 $(INSTALL_DIR) $(1)/usr/sbin
45 $(INSTALL_BIN) $(PKG_BUILD_DIR)/usr/sbin/$(PKG_NAME) $(1)/usr/sbin
46 $(INSTALL_DIR) $(1)/usr/share/debootstrap
47 $(INSTALL_BIN) $(PKG_BUILD_DIR)/usr/share/debootstrap/pkgdetails $(1)/usr/share/debootstrap
48 $(INSTALL_DATA) $(PKG_BUILD_DIR)/usr/share/debootstrap/functions $(1)/usr/share/debootstrap
49 $(INSTALL_DATA) $(PKG_BUILD_DIR)/usr/share/debootstrap/devices.tar.gz $(1)/usr/share/debootstrap
50 $(INSTALL_DIR) $(1)/usr/share/debootstrap/scripts
51 $(INSTALL_DATA) $(PKG_BUILD_DIR)/usr/share/debootstrap/scripts/* $(1)/usr/share/debootstrap/scripts
52 endef
53
54 $(eval $(call BuildPackage,debootstrap))