summaryrefslogtreecommitdiff
path: root/community/stow/PKGBUILD
blob: c362a08d02bdc5ec3608a12db595101ed0fd844c (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
# $Id$
# Maintainer: Sebastien Luttringer <seblu+arch@seblu.net>
# Contributor: eric <eric@archlinux.org>
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
# Contributor: Chris Brannon <cmbrannon79@gmail.com>

pkgname=stow
pkgver=2.1.0
pkgrel=1
pkgdesc='GNU Stow is a program for managing the installation of software packages'
url='http://www.gnu.org/software/stow/'
arch=('i686' 'x86_64')
source=("ftp://ftp.gnu.org/pub/gnu/$pkgname/$pkgname-$pkgver.tar.gz")
license=('GPL2')
md5sums=('5526fdb8c76d0aee35eb304d7f55d2f6')

build() {
  cd $pkgname-$pkgver
  ./configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info
  make
}

package() {
  cd $pkgname-$pkgver
  make DESTDIR="$pkgdir" install
}

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