mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-05 12:26:52 +02:00
testing/ecore: new aport
Enlightenment's core event abstraction layer and OS abstraction layer http://trac.enlightenment.org/e/wiki/Ecore
This commit is contained in:
parent
4b2fb1a830
commit
5118188ed9
43
testing/ecore/APKBUILD
Normal file
43
testing/ecore/APKBUILD
Normal file
@ -0,0 +1,43 @@
|
||||
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
|
||||
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
||||
pkgname=ecore
|
||||
pkgver=1.0.0
|
||||
pkgrel=0
|
||||
pkgdesc="Enlightenment's core event abstraction layer and OS abstraction layer"
|
||||
url="http://trac.enlightenment.org/e/wiki/Ecore"
|
||||
arch="all"
|
||||
license="BSD"
|
||||
depends=
|
||||
depends_dev="eina-dev eet-dev evas-dev glib-dev c-ares-dev curl-dev openssl-dev
|
||||
libxcursor-dev libxinerama-dev libxrandr-dev libxrender-dev
|
||||
libxcomposite-dev libxfixes-dev libxdamage-dev"
|
||||
makedepends="$depends_dev"
|
||||
install=""
|
||||
subpackages="$pkgname-dev"
|
||||
source="http://download.enlightenment.org/releases/ecore-$pkgver.tar.gz"
|
||||
|
||||
_builddir="$srcdir"/ecore-$pkgver
|
||||
prepare() {
|
||||
local i
|
||||
cd "$_builddir"
|
||||
for i in $source; do
|
||||
case $i in
|
||||
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
||||
esac
|
||||
done
|
||||
}
|
||||
|
||||
build() {
|
||||
cd "$_builddir"
|
||||
./configure --prefix=/usr \
|
||||
--enable-cares \
|
||||
|| return 1
|
||||
make || return 1
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$_builddir"
|
||||
make DESTDIR="$pkgdir" install || return 1
|
||||
}
|
||||
|
||||
md5sums="56fa814282f48c346b398e16de81145f ecore-1.0.0.tar.gz"
|
||||
Loading…
x
Reference in New Issue
Block a user