summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: b8398f029b019b7623d938b06dcc48e66da67cce (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
# Maintainer: LordofNoob <leginee [at] gmail (dot) com>
# Contributor: jose <jose1711 [at] gmail (dot) com>

pkgname=epm
arch=('i686' 'x86_64')
pkgver=5.0.0
pkgrel=1
pkgdesc="EPM Package manager generates software and patch distributions Packages in various formats from a list of files."
license=('Apache')
url="https://jimjag.github.io/epm/"
source=("https://github.com/jimjag/epm/archive/v5.0.0.tar.gz")
md5sums=('8ce02a315807bd406b5de85ccf63e7fb')
depends=('fltk-mod' 'gcc-libs')

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

#check() {
#  cd $srcdir/${pkgname}-$pkgver
#  make test
#}

package(){
  cd $srcdir/${pkgname}-$pkgver
  make -i install

}