Files
dh-make/PKGBUILD
Johannes Dewender 0d7a4babc5 dh-make: 0.62
2013-10-07 15:03:10 +02:00

21 lines
677 B
Bash

# Contributor: Johannes Dewender arch at JonnyJD dot net
# Contributor: Bartosz Feński <fenio@debian.org>
pkgname=dh-make
pkgver=0.62
pkgrel=1
pkgdesc="tool that converts source archives into Debian package source"
arch=('any')
url="http://packages.debian.org/sid/dh-make"
license=('GPL')
depends=('debhelper' 'dpkg' 'perl' 'make')
source=(http://ftp.debian.org/debian/pool/main/d/dh-make/dh-make_$pkgver.tar.gz)
md5sums=('50df589c6a25c34805be0bd436f81986')
package() {
mkdir -p $pkgdir/usr/bin $pkgdir/usr/share/debhelper/dh_make
cp $srcdir/$pkgname/dh_make $pkgdir/usr/bin
cp -a $srcdir/$pkgname/lib/* $pkgdir/usr/share/debhelper/dh_make/
}
# vim:set ts=2 sw=2 et: