blob: 530888cd1416bd2494f57365f6fd20bf4a3a7942 (
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
|
# Maintainer: Swyter <swyterzone+aur@gmail.com>
pkgname=xbfuse-git
pkgver=r4.99db830
pkgrel=1
pkgdesc="Mount Xbox and Xbox 360 disk images via FUSE"
arch=('x86_64' 'i686' 'arm' 'armv6h' 'armv7h' 'aarch64')
url="http://multimedia.cx/xbfuse/"
license=('GPL')
depends=('fuse')
makedepends=('git' 'sed')
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
source=('git+https://github.com/multimediamike/xbfuse')
md5sums=('SKIP')
# Please refer to the 'USING VCS SOURCES' section of the PKGBUILD man page for
# a description of each element in the source array.
pkgver()
{
cd "$srcdir/${pkgname%-git}"
# The examples below are not absolute and need to be adapted to each repo. The
# primary goal is to generate version numbers that will increase according to
# pacman's version comparisons with later commits to the repo. The format
# VERSION='VER_NUM.rREV_NUM.HASH', or a relevant subset in case VER_NUM or HASH
# are not available, is recommended.
# Git, no tags available
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
build()
{
cd "$srcdir/${pkgname%-git}"
# fix the autoconf script to stop checking for an specific FUSE version...
sed -i '/fuse\/fuse.h/d' ./configure.ac
sed -i 's/.*FUSE_USE_VERSION.*/\[/g' ./configure.ac
sed -i 's/.*#include <fuse.h>.*/\]/g' ./configure.ac
# add mandatory flags requested by FUSE, what a pain :(
export CPPFLAGS=-D_FILE_OFFSET_BITS=64
./autogen.sh
./configure --prefix=/usr
make
}
package()
{
cd "$srcdir/${pkgname%-git}"
make DESTDIR="$pkgdir/" install
}
|