diff options
Diffstat (limited to 'community/winegame')
-rw-r--r-- | community/winegame/PKGBUILD | 40 | ||||
-rw-r--r-- | community/winegame/winegame.install | 9 |
2 files changed, 0 insertions, 49 deletions
diff --git a/community/winegame/PKGBUILD b/community/winegame/PKGBUILD deleted file mode 100644 index 6df4bc45a..000000000 --- a/community/winegame/PKGBUILD +++ /dev/null @@ -1,40 +0,0 @@ -# $Id: PKGBUILD 85556 2013-03-03 05:22:22Z cinelli $ -# Maintainer: Federico Cinelli <cinelli@aur.archlinux.com> -# Contributor: Laurent Carlier <lordheavym@gmail.com> - -pkgname=winegame -pkgver=0.2.0 -pkgrel=2 -pkgdesc="An interface to install windows programs in Wine" -arch=('i686' 'x86_64') -install=winegame.install -url="http://code.google.com/p/winegame/" -license=('GPL3') -depends=('winestuff') -optdepends=('libnotify: Desktop notifaction support') -makedepends=('cmake') -source=("http://winegame.googlecode.com/files/$pkgname-$pkgver.tar.gz") -md5sums=('631dd218707c6efb2901ef1206092538') - -if [[ $CARCH == "x86_64" ]]; then - depends+=('lib32-mesa-libgl') -fi - -build() { - cd "$srcdir/$pkgname-$pkgver" - - mkdir -p build - cd build - - cmake -DCMAKE_BUILD_TYPE=Release \ - -DCMAKE_INSTALL_PREFIX=/usr .. - - make -} - -package() { - cd "$srcdir/$pkgname-$pkgver/build" - - make DESTDIR="$pkgdir/" install -} - diff --git a/community/winegame/winegame.install b/community/winegame/winegame.install deleted file mode 100644 index e85c7ac73..000000000 --- a/community/winegame/winegame.install +++ /dev/null @@ -1,9 +0,0 @@ -post_install () { - update-desktop-database -q -} -post_upgrade () { - post_install -} -post_removal () { - post_install -} |