Files
dh-make/PKGBUILD
Luca Weiss c4db87afe3 upgpkg: dh-make 2.201903-1
upstream release
2019-11-14 20:04:42 +01:00

25 lines
841 B
Bash

# Maintainer: Luca Weiss <luca (at) z3ntu (dot) xyz>
# Contributor: Johannes Dewender arch at JonnyJD dot net
# Contributor: Bartosz Feński <fenio@debian.org>
pkgname=dh-make
pkgver=2.201903
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=('dpkg' 'make' 'python')
source=(https://deb.debian.org/debian/pool/main/d/${pkgname}/${pkgname}_${pkgver}.tar.xz)
sha256sums=('5746bb96240b46bece1536e7fe4d1f7348a8cd99bc2abd3076136101c44699b3')
package() {
cd "$srcdir/$pkgname-$pkgver"
install -D dh_make "$pkgdir"/usr/bin/dh_make
install -d "$pkgdir"/usr/share/debhelper/dh_make
cp -a lib/* "$pkgdir"/usr/share/debhelper/dh_make/
install -Dm644 dh_make.1 "$pkgdir"/usr/share/man/man8/dh_make.8
}
# vim:set ts=2 sw=2 et: