blob: 4ed6666c2e0508032142e00ecb100e72bbf655f4 (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
# Maintainer: bill-auger <bill-auger@programmer.net>
# Maintainer (AUR): MCMic <come.bernigaud@laposte.net>
pkgname=puzzlemoppet-git
pkgver=r64.d79b10e
pkgrel=3
pkgdesc="A challenging 3D puzzle game where you must guide the Moppet through the vast and eternal void of space by solving the various and beautiful puzzles thrown at you"
arch=('i686' 'x86_64')
url=https://bitbucket.org/Knitter/puzzlemoppet/overview
license=('WTFPL')
depends=('irrlicht' 'libxrandr' 'ode' 'openal')
makedepends=('cmake' 'git')
conflicts=('puzzle-moppet-bin')
source=(${pkgname}::git+https://bitbucket.org/Knitter/puzzlemoppet.git)
md5sums=('SKIP')
_version_constraint() # (dep_pkgname)
{
local dep_pkgname=$1
local version=$(pacman -S --print-format='%v' ${dep_pkgname} | tail -n 1)
version=${version%-*}
local version_inc=${version%.*}.$(( ${version##*.} + 1 ))
echo -n "${dep_pkgname}>=${version}" "${dep_pkgname}<${version_inc}"
}
pkgver()
{
cd "${srcdir}/${pkgname}"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
prepare()
{
cd "${srcdir}/${pkgname}/puzzlemoppet"
sed -i 's|/licences/|/licenses/|' ./CMakeLists.txt
}
build()
{
cd "${srcdir}/${pkgname}/puzzlemoppet"
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr -DBUILD_FOR_INSTALL=ON .
make
}
package()
{
cd "${srcdir}/${pkgname}/puzzlemoppet"
depends+=( $(_version_constraint 'ode') )
make install DESTDIR=$pkgdir
}
|