[arch-commits] Commit in quilt/repos (2 files)

Evangelos Foutras foutrelis at archlinux.org
Tue Jul 7 20:27:38 UTC 2020


    Date: Tuesday, July 7, 2020 @ 20:27:38
  Author: foutrelis
Revision: 660233

archrelease: copy trunk to community-staging-any

Added:
  quilt/repos/community-staging-any/
  quilt/repos/community-staging-any/PKGBUILD
    (from rev 660232, quilt/trunk/PKGBUILD)

----------+
 PKGBUILD |   50 ++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 50 insertions(+)

Copied: quilt/repos/community-staging-any/PKGBUILD (from rev 660232, quilt/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD	                        (rev 0)
+++ community-staging-any/PKGBUILD	2020-07-07 20:27:38 UTC (rev 660233)
@@ -0,0 +1,50 @@
+# Maintainer: Sébastien Luttringer
+# Contributor: Peter Richard Lewis <plewis at aur.archlinux.org>
+# Contributor: Jan de Groot <jgc at archlinux.org>
+# Contributor: dibblethewrecker <dibblethewrecker.at.jiwe.org>
+
+pkgname=quilt
+pkgver=0.66
+pkgrel=2
+pkgdesc='Manage a series of patches by keeping track of the changes each patch makes'
+arch=('any')
+url='https://savannah.nongnu.org/projects/quilt/'
+license=('GPL2')
+depends=(
+  'bash'
+  'bzip2'
+  'diffstat'
+  'diffutils'
+  'findutils'
+  'gawk'
+  'gettext'
+  'gzip'
+  'patch'
+  'perl'
+)
+checkdepends=('ed')
+validpgpkeys=('90DFD6523C57373D81F63D19865688D038F02FC8') # Jean Delvare
+source=("https://savannah.nongnu.org/download/quilt/$pkgname-$pkgver.tar.gz"{,.sig})
+md5sums=('6800c2404a2c0598ab2eff92a636ba70'
+         'SKIP')
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr --sysconfdir=/etc --without-rpmbuild
+  make
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  make check
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make BUILD_ROOT="$pkgdir" install
+  # move bash completion in right place
+  install -d -m 755 "$pkgdir/usr/share/bash-completion"
+  mv "$pkgdir/etc/bash_completion.d" "$pkgdir/usr/share/bash-completion/completions"
+}
+
+# vim:set ts=2 sw=2 et:



More information about the arch-commits mailing list