summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: c223769926e8d3c4d4071e19ab5860cafbf1fdd8 (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
# Maintainer: Gustavo Alvarez <sl1pkn07@gmail.com>
# Contributor: Leandro de Assis <leandrodiassis@gmail.com>

pkgname=popstation
pkgver=1.0.0
pkgrel=2
pkgdesc="Play PSX Games in Sony PSP, One Disc Games"
arch=('i686' 'x86_64')
url="http://dark-alex.org/"
license=('GPL')
depends=('zlib')
source=("http://leandroufcgprojects.googlecode.com/files/${pkgname}-${pkgver}.tar.gz")
sha1sums=('0c16b9d7846fa1b62fdafc756478b34d524baf33')
options=('!buildflags')

prepare() {
  rm -fr build
  cp -R "${pkgname}" build
}

build() {
  cd build
  make
}

package() {
  cd build
  install popstation -Dm755 "${pkgdir}/usr/bin/popstation"
}