summaryrefslogtreecommitdiff
path: root/pcr/stow/PKGBUILD
blob: a3024b7e99236f7d3746d7c97e16683948facc3d (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
# Maintainer: Luke Shumaker <lukeshu@sbcglobal.net>

pkgname=stow
pkgver=2.2.0
pkgrel=1
pkgdesc="A program for managing the installation of software packages, keeping them separate while making them appear to be installed in the same place."
arch=(any)
url="https://www.gnu.org/software/$pkgname/"
license=('GPL2')
depends=('perl>=5.6.1')
source=(https://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz)

build() {
  cd "$srcdir/$pkgname-$pkgver"
  ./configure --prefix=/usr
  make
}

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

md5sums=('902564d502975f353d3b0514a21863b1')