26 lines
773 B
Bash
26 lines
773 B
Bash
# Template file for 'dpkg'
|
|
pkgname=dpkg
|
|
version=1.18.24
|
|
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=d853081d3e06bfd46a227056e591f094e42e78fa8a5793b0093bad30b710d7b4
|
|
|
|
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
|
|
}
|
|
}
|