Date: Friday, January 11, 2019 @ 07:56:10 Author: felixonmars Revision: 422295
archrelease: copy trunk to community-staging-x86_64 Added: hatari/repos/community-staging-x86_64/ hatari/repos/community-staging-x86_64/PKGBUILD (from rev 422294, hatari/trunk/PKGBUILD) ----------+ PKGBUILD | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) Copied: hatari/repos/community-staging-x86_64/PKGBUILD (from rev 422294, hatari/trunk/PKGBUILD) =================================================================== --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2019-01-11 07:56:10 UTC (rev 422295) @@ -0,0 +1,27 @@ +# Maintainer: Shinlun Hsieh <yngwi...@yahoo.com.tw> + +pkgname=hatari +pkgver=2.1.0 +pkgrel=2 +pkgdesc='An Atari ST and STE emulator' +arch=('x86_64') +url='http://hatari.sourceforge.net/' +license=('GPL') +depends=('sdl2' 'libpng' 'portaudio' 'libsystemd' 'hicolor-icon-theme') +makedepends=('cmake' 'systemd') +source=("https://download.tuxfamily.org/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.bz2") +sha256sums=('eb299460e92db4a8a2983a0725cbbc8c185f1470b8ecd791b3d102815da20924') + +build() { + cd ${pkgname}-${pkgver} + + ./configure --prefix=/usr + + make +} + +package() { + cd ${pkgname}-${pkgver} + + make DESTDIR=${pkgdir} install +}