mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-07 17:52:10 +01:00
46 lines
1.1 KiB
Plaintext
46 lines
1.1 KiB
Plaintext
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
|
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=ecore
|
|
pkgver=1.0.0
|
|
pkgrel=1
|
|
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 \
|
|
--disable-gnutls \
|
|
|| return 1
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
rm "$pkgdir"/usr/lib/*.la
|
|
}
|
|
|
|
md5sums="56fa814282f48c346b398e16de81145f ecore-1.0.0.tar.gz"
|