mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
30 lines
693 B
Bash
30 lines
693 B
Bash
# Contributor: Andries Radu <admiral0 AT tuxfamily.org>
|
|
|
|
pkgname=libgsm0710-git
|
|
pkgver=20090921
|
|
pkgrel=1
|
|
pkgdesc="GSM 07.10 Server Engine"
|
|
arch=('arm')
|
|
url="http://www.freesmartphone.org"
|
|
license=('GPL')
|
|
depends=(glib2)
|
|
makedepends=(vala vala-misc-git)
|
|
_gitroot="git://git.freesmartphone.org/libgsm0710.git"
|
|
_gitname="libgsm0710"
|
|
build() {
|
|
cd ${srcdir}
|
|
msg "Connecting to git.freesmartphone.org GIT server...."
|
|
|
|
if [ -d ${srcdir}/$_gitname ] ; then
|
|
cd $_gitname && git pull origin
|
|
msg "The local files are updated."
|
|
else
|
|
git clone $_gitroot
|
|
cd $_gitname
|
|
fi
|
|
|
|
./autogen.sh
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=$pkgdir install || return 1
|
|
}
|