blob: 37d62afd8a327d636929c83f4190c8e7b95186bd (
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
|
# Contributor: CJlano <cjlano+aur.eliot - free.fr>
# Contributor: macxcool <macx cool at tuta + nota dot com>
pkgname=eliot
pkgver=2.2
pkgrel=2
pkgdesc="An open source Scrabble game"
arch=('i686' 'x86_64')
url="http://www.nongnu.org/eliot/"
license=('GPL')
depends=('arabica' 'libconfig' 'qt4')
makedepends=('boost')
install="$pkgname.install"
source=(https://download.savannah.nongnu.org/releases/eliot/releases/$pkgver/$pkgname-$pkgver.tar.gz)
md5sums=('5f1a07e0b000a6f69593cb9eb0acc435')
build() {
cd "$pkgname-$pkgver"
CXXFLAGS="-Wno-format-security"
./configure --prefix=/usr
make
}
package() {
cd "$pkgname-$pkgver"
make DESTDIR="$pkgdir/" install
}
|