[arch-commits] Commit in yodl/trunk (PKGBUILD)

Eric Bélanger eric at archlinux.org
Thu Jan 28 03:20:00 UTC 2010


    Date: Wednesday, January 27, 2010 @ 22:19:59
  Author: eric
Revision: 65343

upgpkg: yodl 2.15.1-2
    Added macros (close FS#17882), Added bash depends

Modified:
  yodl/trunk/PKGBUILD

----------+
 PKGBUILD |   19 ++++++++++++-------
 1 file changed, 12 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2010-01-28 03:18:40 UTC (rev 65342)
+++ PKGBUILD	2010-01-28 03:19:59 UTC (rev 65343)
@@ -1,21 +1,26 @@
 # $Id$
-# Maintainer: Jeff Mickey <jeff at archlinux.org>
+# Maintainer: Eric Belanger <eric at archlinux.org>
+# Contributor: Jeff Mickey <jeff at archlinux.org>
 
 pkgname=yodl
 pkgver=2.15.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Implements a pre-document language and tools to process it."
 arch=('i686' 'x86_64')
 url="http://yodl.sourceforge.net"
 license=('GPL3')
+depends=('bash')
 makedepends=('icmake')
 source=(http://downloads.sourceforge.net/project/yodl/yodl/${pkgver}/yodl_${pkgver}.orig.tar.gz)
 md5sums=('4a6bec6216f5b9c4f6c18e8d8dff8deb')
+sha1sums=('52752707dfe9bb58430f8b3687f6eb72c728cb1d')
 
 build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./build programs
-  ./build install programs $pkgdir
-  ./build man
-  ./build install man $pkgdir
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./build programs || return 1
+  ./build macros || return 1
+  ./build man || return 1
+  ./build install programs "${pkgdir}" || return 1
+  ./build install macros "${pkgdir}" || return 1
+  ./build install man "${pkgdir}" || return 1
 }




More information about the arch-commits mailing list