# Maintainer: Giovanni 'ItachiSan' Santini # Contributor: Jochen Schalanda # Contributor: Charles Pigott # Contributor: André Klitzing # Contributor: JD Horelick pkgname=devscripts pkgver=2.17.11 pkgrel=1 pkgdesc="Scripts to make the life of a Debian Package maintainer easier" arch=('i686' 'x86_64') url="http://packages.qa.debian.org/d/devscripts.html" license=('GPL2') depends=('dpkg' 'wget' 'sed' 'perl' 'debianutils' 'debhelper' 'perl-timedate') optdepends=('sensible-utils: for sensible alternative selection') makedepends=( 'docbook-xsl' 'bash-completion' 'help2man' 'git' 'perl-file-desktopentry' 'perl-file-homedir' 'perl-file-basedir' 'perl-git-wrapper' 'perl-libwww' 'perl-list-compare' 'perl-parse-debcontrol' 'perl-timedate' 'po4a' 'python-setuptools' ) options=('!makeflags') source=( #http://ftp.debian.org/debian/pool/main/d/${pkgname}/${pkgname}_${pkgver}.tar.xz "${pkgname}::git+https://anonscm.debian.org/git/collab-maint/devscripts.git#tag=v${pkgver}" fixes.patch ) sha256sums=('SKIP' 'e5fef21e1d8aee3128c6499078bc2f38e8f80189b30882df817637388f1e7717') prepare(){ cd "$pkgname" patch -p1 -i "$srcdir/fixes.patch" } build() { cd "$pkgname" make } package() { cd "$pkgname" make DESTDIR="$pkgdir" install # Create dch symlink to debchange ln -s /usr/bin/debchange "$pkgdir/usr/bin/dch" # bts completion is present already in the official package rm "$pkgdir/usr/share/bash-completion/completions/bts" }