summaryrefslogtreecommitdiff
path: root/community/pwgen/PKGBUILD
diff options
context:
space:
mode:
authorMichał Masłowski <mtjm@mtjm.eu>2013-06-03 10:26:16 +0200
committerMichał Masłowski <mtjm@mtjm.eu>2013-06-03 10:26:16 +0200
commit2f9b9e4565cfb671eda54a32a3efef34723dfb80 (patch)
treeebfea96eb21ee3f24d7189930a316ea8c6e415ba /community/pwgen/PKGBUILD
parent943e219407807d8fd4b88ce84b45e9e27117ea25 (diff)
parent1f86bf1b08cb980cea57c1d4d3187e2251f5a63b (diff)
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts: community/gmtk/PKGBUILD community/mumble/PKGBUILD community/notmuch/PKGBUILD community/pwgen/PKGBUILD extra/clutter-gst/PKGBUILD extra/libogg/PKGBUILD
Diffstat (limited to 'community/pwgen/PKGBUILD')
-rw-r--r--community/pwgen/PKGBUILD30
1 files changed, 18 insertions, 12 deletions
diff --git a/community/pwgen/PKGBUILD b/community/pwgen/PKGBUILD
index 06f091e56..4587955d6 100644
--- a/community/pwgen/PKGBUILD
+++ b/community/pwgen/PKGBUILD
@@ -1,25 +1,31 @@
-# $Id: PKGBUILD 67140 2012-03-04 23:54:53Z pschmitz $
-# Maintainer: damir <damir@archlinux.org>
-# Contributor : Tobias Powalowski <t.powa@gmx.de>
+# $Id: PKGBUILD 92192 2013-06-02 15:55:52Z arodseth $
+# Maintainer: Alexander Rødseth <rodseth@gmail.com>
+# Contributor: damir <damir@archlinux.org>
+# Contributor: Tobias Powalowski <t.powa@gmx.de>
pkgname=pwgen
pkgver=2.06
-pkgrel=3
-pkgdesc="Pwgen is a small password generator which creates passwords which can be easily memorized by a human"
-arch=("i686" "x86_64" "mips64el")
-url="http://sourceforge.net/projects/pwgen/"
+pkgrel=4
+pkgdesc='Password generator for creating easily memorable passwords'
+arch=('x86_64' 'i686' 'mips64el')
+url='http://sourceforge.net/projects/pwgen/'
license=('GPL')
depends=('glibc')
-source=("http://downloads.sourceforge.net/sourceforge/pwgen/${pkgname}-${pkgver}.tar.gz")
-md5sums=('935aebcbe610fbc9de8125e7b7d71297')
+source=("http://downloads.sourceforge.net/sourceforge/pwgen/$pkgname-$pkgver.tar.gz")
+sha256sums=('61598c9e3a0f7eb2e7367d4ecc71522c4f16a7d41ed31db29e3afee8d9843454')
build() {
- cd ${srcdir}/${pkgname}-${pkgver}
+ cd "$srcdir/$pkgname-$pkgver"
+
+ autoconf
./configure --prefix=/usr --mandir=/usr/share/man
make
}
package() {
- cd ${srcdir}/${pkgname}-${pkgver}
- make DESTDIR=${pkgdir} install
+ cd "$srcdir/$pkgname-$pkgver"
+
+ make DESTDIR="$pkgdir" install
}
+
+# vim:set ts=2 sw=2 et: