move 5 pkgs to _debian
git-svn-id: http://svn.kraehen.org/aur@215 04e22907-73ef-438a-a52f-a971dc6d3b47
This commit is contained in:
16
.SRCINFO
Normal file
16
.SRCINFO
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
pkgbase = dh-make
|
||||||
|
pkgdesc = tool that converts source archives into Debian package source
|
||||||
|
pkgver = 0.61
|
||||||
|
pkgrel = 1
|
||||||
|
url = http://packages.debian.org/sid/dh-make
|
||||||
|
arch = any
|
||||||
|
license = GPL
|
||||||
|
depends = debhelper
|
||||||
|
depends = dpkg
|
||||||
|
depends = perl
|
||||||
|
depends = make
|
||||||
|
source = http://ftp.debian.org/debian/pool/main/d/dh-make/dh-make_0.61.tar.gz
|
||||||
|
md5sums = 405aa44ae1422e7440ffc43c1646aece
|
||||||
|
|
||||||
|
pkgname = dh-make
|
||||||
|
|
||||||
8
.gitignore
vendored
Normal file
8
.gitignore
vendored
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
*.tar.gz
|
||||||
|
*.tar.xz
|
||||||
|
*.tgz
|
||||||
|
*.rpm
|
||||||
|
*.zip
|
||||||
|
*.bz2
|
||||||
|
src/
|
||||||
|
pkg/
|
||||||
20
PKGBUILD
Normal file
20
PKGBUILD
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
# Contributor: Johannes Dewender arch at JonnyJD dot net
|
||||||
|
# Contributor: Bartosz Feński <fenio@debian.org>
|
||||||
|
pkgname=dh-make
|
||||||
|
pkgver=0.61
|
||||||
|
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=('405aa44ae1422e7440ffc43c1646aece')
|
||||||
|
|
||||||
|
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:
|
||||||
Reference in New Issue
Block a user