aboutsummaryrefslogtreecommitdiffstats
path: root/main/dpkg/APKBUILD
blob: 4fa306ae09ace4cd97337c15c3aefa4498ae6167 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=dpkg
pkgver=1.18.7
pkgrel=0
pkgdesc="The Debian Package Manager"
url="http://packages.debian.org/dpkg"
arch="all"
license="GPL"
makedepends="bzip2-dev zlib-dev perl"
subpackages="$pkgname-doc $pkgname-dev"
source="http://ftp.de.debian.org/debian/pool/main/d/$pkgname/${pkgname}_$pkgver.tar.xz
	add-muslgnueabihf.patch
	"

_builddir="$srcdir"/$pkgname-$pkgver
prepare() {
	cd "$_builddir"
	for i in $source; do
		case $i in
		*.patch) msg "$i"; patch -p1 -i "$srcdir"/$i || return 1;;
		esac
	done

	sed -i "s|<ncursesw/curses.h>|<curses.h>|g" dselect/dselect.h \
		dselect/Makefile.in || return 1
	sed -i "s|<ncursesw/term.h>|<term.h>|g" dselect/main.cc || return 1
}

build() {
	cd "$_builddir"
	./configure \
		--build=$CBUILD \
		--host=$CHOST \
		--prefix=/usr \
		--sysconfdir=/etc \
		--mandir=/usr/share/man \
		--localstatedir=/var \
		--with-zlib \
		--with-bz2 \
		--disable-dselect \
		--disable-start-stop-daemon \
		|| return 1
	make || return 1
}

package() {
	cd "$_builddir"
	make DESTDIR="$pkgdir" install || return 1
}

dev() {
	default_dev
	pkgdesc="Debian package development tools"
	depends="perl"
	mkdir -p "$subpkgdir"/usr/bin "$subpkgdir"/usr/share \
		"$subpkgdir"/usr/lib/dpkg

	mv "$pkgdir"/usr/bin/dpkg-architecture \
		"$pkgdir"/usr/bin/dpkg-buildpackage \
		"$pkgdir"/usr/bin/dpkg-checkbuilddeps \
		"$pkgdir"/usr/bin/dpkg-distaddfile \
		"$pkgdir"/usr/bin/dpkg-genchanges \
		"$pkgdir"/usr/bin/dpkg-gencontrol \
		"$pkgdir"/usr/bin/dpkg-gensymbols \
		"$pkgdir"/usr/bin/dpkg-name \
		"$pkgdir"/usr/bin/dpkg-parsechangelog \
		"$pkgdir"/usr/bin/dpkg-scanpackages \
		"$pkgdir"/usr/bin/dpkg-scansources \
		"$pkgdir"/usr/bin/dpkg-shlibdeps \
		"$pkgdir"/usr/bin/dpkg-source \
		"$pkgdir"/usr/bin/dpkg-vendor \
		"$subpkgdir"/usr/bin/ || return 1

	mv "$pkgdir"/usr/share/perl* "$subpkgdir"/usr/share/
	mv "$pkgdir"/usr/lib/dpkg/parsechangelog "$subpkgdir"/usr/lib/dpkg/
}

md5sums="073dbf2129a54b0fc627464bf8af4a1b  dpkg_1.18.7.tar.xz
360155cfe9e989a9ee12b56a579dfa75  add-muslgnueabihf.patch"
sha256sums="ace36d3a6dc750a42baf797f9e75ec580a21f92bb9ff96b482100755d6d9b87b  dpkg_1.18.7.tar.xz
63d331e297e2e5765bf919485cc87f6ce307344f38921015a5564f94b37af6e1  add-muslgnueabihf.patch"
sha512sums="f5a0d35040338eecd303d2c39469f2cb38e8e135df2179c0ad6cbf67cb509303df528cb03db9fb26db82456171320ee2ba9b31f18c4b994af3fdcecb2e8a0a80  dpkg_1.18.7.tar.xz
5f83bce6a1d724f690ba8eded74c87dbd3b4c8a7850a53d5c68ad7cfc9712662a50a8a00a02329b2be64f3246cff1d6d7037950a81d4732aba2498ac1da114ac  add-muslgnueabihf.patch"