mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 09:07:14 +08:00
48 lines
983 B
Bash
Executable File
48 lines
983 B
Bash
Executable File
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas@chakra-project.org
|
|
|
|
pkgname=eina-svn
|
|
pkgver=69763
|
|
pkgrel=1
|
|
pkgdesc="E17 file chunk reading/writing library"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.enlightenment.org"
|
|
license=('LGPL2')
|
|
depends=('glibc')
|
|
makedepends=('subversion')
|
|
options=('!libtool' '!emptydirs')
|
|
|
|
# Undash when updating
|
|
_svntrunk="http://svn.enlightenment.org/svn/e/trunk/eina"
|
|
_svnmod="eina"
|
|
|
|
build() {
|
|
cd $srcdir
|
|
|
|
msg "Connecting to $_svntrunk SVN server...."
|
|
if [ -d $_svnmod/.svn ]; then
|
|
(cd $_svnmod && svn up -r $pkgver)
|
|
else
|
|
svn co http://svn.enlightenment.org/svn/e/trunk/eina --config-dir ./ -r $pkgver $_svnmod
|
|
fi
|
|
|
|
msg "SVN checkout done or server timeout"
|
|
msg "Starting make..."
|
|
|
|
cp -r $_svnmod $_svnmod-build
|
|
cd $_svnmod-build
|
|
|
|
./autogen.sh --prefix=/usr --enable-amalgamation
|
|
make
|
|
}
|
|
|
|
package(){
|
|
cd $srcdir/$_svnmod-build
|
|
make DESTDIR=$pkgdir install
|
|
|
|
rm -r $srcdir/$_svnmod-build
|
|
|
|
}
|