dh-make: 1.20140617

This commit is contained in:
Johannes Dewender
2014-07-10 18:05:02 +02:00
parent b515735208
commit 9f0ab2d639
2 changed files with 10 additions and 9 deletions

View File

@@ -1,6 +1,6 @@
pkgbase = dh-make pkgbase = dh-make
pkgdesc = tool that converts source archives into Debian package source pkgdesc = tool that converts source archives into Debian package source
pkgver = 0.63 pkgver = 1.20140617
pkgrel = 1 pkgrel = 1
url = http://packages.debian.org/sid/dh-make url = http://packages.debian.org/sid/dh-make
arch = any arch = any
@@ -9,8 +9,8 @@ pkgbase = dh-make
depends = dpkg depends = dpkg
depends = perl depends = perl
depends = make depends = make
source = http://ftp.debian.org/debian/pool/main/d/dh-make/dh-make_0.63.tar.gz source = http://ftp.debian.org/debian/pool/main/d/dh-make/dh-make_1.20140617.tar.xz
md5sums = aa0e6502d682d3c6d97b81ce2d414c87 sha256sums = 1b33c7fadacbe629889aec54d3a1a9cc1a3dd20b5ef04abdde9f14a1c3ea399e
pkgname = dh-make pkgname = dh-make

View File

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