summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 43fc33635699783739c089f6512c736338877c01 (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: Geballin - Guillaume Ballin <macniaque at free dot fr>
pkgname=slideshow
pkgver=0.9
pkgrel=1
pkgdesc="Draw a slideshow with the images in a directory or listed in a file and show it in a window or fullscreen."
url="https://github.com/Geballin/slideshow"
arch=('x86_64' 'i686')
license=('GPLv3')
depends=(sdl sdl_image)
optdepends=()
makedepends=(gcc make)
conflicts=()
replaces=()
backup=()
install=
source=("https://github.com/Geballin/slideshow/archive/0.9.tar.gz")

md5sums=('c0f195d6f74c53aa8d2f11cd75307c8b')

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

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