25 lines
905 B
Bash
25 lines
905 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.202001
|
|
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)
|
|
sha512sums=('5abe7aed33e956af8a1fd4b07aa32408cebdc17dfe555efb445c47879b63efd2e04601eec15789e70d7493954b9d099e8572c6bb2e15c28327a3c5a20e0451e4')
|
|
|
|
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:
|