summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 8d2cba5c935d1403805a5f8d1509a993fc63900b (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
#Maintainer: Steffen Weber <-boenki-gmx-de->
#Contributor: xavi <xavi@netsons.org>

pkgname=xsw
pkgver=0.3.5
pkgrel=3
pkgdesc="Slideshow presentation tool for those who are frustrated with PowerPoint and its clones"
arch=('x86_64')
license=('GPL3')
url="https://code.google.com/archive/p/xsw/"
depends=('sdl_ttf' 'sdl_image' 'sdl_gfx')
optdepends=('imagemagick: convert slideshow to png,jpeg,pdf')
source=("https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/xsw/$pkgname-$pkgver.tar.gz")
md5sums=('916849d541a39aa8c96b89a94d523a0b')

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

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