26 lines
773 B
Bash
26 lines
773 B
Bash
# Template file for 'dpkg'
|
|
pkgname=dpkg
|
|
version=1.18.23
|
|
revision=1
|
|
build_style=gnu-configure
|
|
configure_args="--disable-start-stop-daemon --with-libz --with-libbz2 --with-liblzma"
|
|
hostmakedepends="pkg-config perl"
|
|
makedepends="zlib-devel bzip2-devel liblzma-devel ncurses-devel"
|
|
depends="perl"
|
|
short_desc="The Debian Package Manager"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
license="GPL-2"
|
|
homepage="http://packages.debian.org/dpkg"
|
|
distfiles="${DEBIAN_SITE}/main/d/dpkg/dpkg_${version}.tar.xz"
|
|
checksum=cc08802a0cea2ccd0c10716bc71531ff9b9234dd454b83a59f71117a37f36923
|
|
|
|
dpkg-devel_package() {
|
|
short_desc+=" - development files"
|
|
depends="${makedepends}"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/*.a
|
|
vmove usr/lib/pkgconfig
|
|
vmove usr/share/man/man3
|
|
}
|
|
}
|