blob: 4c8dcee58ddceab177c357358fe089aa6fd25848 (
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
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=dpkg
pkgver=1.19.7
pkgrel=0
pkgdesc="The Debian Package Manager"
url="https://packages.debian.org/dpkg"
arch="all"
license="GPL-2.0-or-later BSD-2-Clause"
depends="tar xz"
options="!check"
makedepends="bzip2-dev linux-headers perl zlib-dev"
subpackages="$pkgname-doc $pkgname-dev"
source="https://deb.debian.org/debian/pool/main/d/$pkgname/${pkgname}_$pkgver.tar.xz"
build() {
cd "$builddir"
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--localstatedir=/var \
--with-libz \
--with-libbz2 \
--disable-dselect \
--disable-start-stop-daemon \
--disable-nls \
--disable-static
make
}
package() {
cd "$builddir"
make DESTDIR="$pkgdir" install
# Add missing dir & files
install -d "$pkgdir/var/$pkgname"/updates/
touch "$pkgdir/var/lib/$pkgname"/status
touch "$pkgdir/var/lib/$pkgname"/available
}
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-mergechangelogs \
"$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/
mv "$pkgdir"/usr/share/perl* "$subpkgdir"/usr/share/
}
sha512sums="9ca441dc265baf5359c71617aef1c57504a7097c26ea57108b88dadc511bfa9918fcc765d8c67cec9def9916c5df92d6cabe508446dbc7223a29b45260445e81 dpkg_1.19.7.tar.xz"
|