summaryrefslogtreecommitdiff
path: root/community/pwgen/PKGBUILD
blob: 4587955d6e3227e9d7f896d4e7a4b87b9b9a79a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# $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=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")
sha256sums=('61598c9e3a0f7eb2e7367d4ecc71522c4f16a7d41ed31db29e3afee8d9843454')

build() {
  cd "$srcdir/$pkgname-$pkgver"

  autoconf
  ./configure --prefix=/usr --mandir=/usr/share/man
  make
}

package() {
  cd "$srcdir/$pkgname-$pkgver"

  make DESTDIR="$pkgdir" install
}

# vim:set ts=2 sw=2 et: