summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 924a53096b31d1e3e4b48fd44bc18204952be7a5 (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
# Maintainer: Thaodan <theodorstormgrade@gmai.com>
_pkgname=usenew
pkgname=$_pkgname-git
pkgver=e8098e6
pkgrel=1
pkgdesc="wine prefix manager with some libs around it written for POSIX shells and in some parts for bash shell"
arch=('any')
url="https://github.com/Thaodan/usenew"
license=('GPL2')
depends=('sh' 'bash' 'coreutils' 'sed' 'wine' 'libsh')
provides=($_pkgname)
source=(git+https://github.com/Thaodan/$_pkgname)
makedepends=('shpp' 'git')

pkgver() {
  cd "$srcdir/$_pkgname"
  git rev-parse --short HEAD
}

build() {
  cd $srcdir/$_pkgname
  make PREFIX=/usr
}	
package() {
  cd $srcdir/$_pkgname
  make PREFIX=$pkgdir/usr install
}
md5sums=('SKIP')