New package: pvala-codegen-posix-20130929.
This commit is contained in:
parent
fef41a2c97
commit
067f840c48
|
@ -0,0 +1,13 @@
|
|||
diff --git a/configure.ac b/configure.ac
|
||||
index ff46b0d..be89c11 100644
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -6,7 +6,7 @@ AC_CONFIG_MACRO_DIR([m4])
|
||||
AM_INIT_AUTOMAKE([1.11 dist-bzip2])
|
||||
AM_MAINTAINER_MODE([enable])
|
||||
|
||||
-VALA_VERSION=0.20
|
||||
+VALA_VERSION=0.22
|
||||
PACKAGE_SUFFIX=-$VALA_VERSION
|
||||
|
||||
dnl http://people.gnome.org/~walters/docs/build-api.txt
|
|
@ -0,0 +1,36 @@
|
|||
# Template file for 'pvala-codegen-posix'
|
||||
pkgname=pvala-codegen-posix
|
||||
version=20130929
|
||||
revision=1
|
||||
build_style=gnu-configure
|
||||
_common_dir="/usr/libexec/vala"
|
||||
configure_args="--prefix=${_common_dir} --bindir=${_common_dir}
|
||||
--libdir=${_common_dir}"
|
||||
hostmakedepends="autoconf automake libtool pkg-config git pvala"
|
||||
makedepends="libglib-devel pvala-devel"
|
||||
short_desc="Posix profile plugin for pvala"
|
||||
maintainer="davehome <davehome@redthumb.info.tm"
|
||||
homepage="http://live.gnome.org/Val://gitorious.org/ideas/vala-codegen-posix"
|
||||
license="LGPL-2.1"
|
||||
long_desc="
|
||||
The return of the POSIX profile for Vala (only works with pvala package)."
|
||||
|
||||
do_fetch() {
|
||||
local url="git://gitorious.org/ideas/vala-codegen-posix.git"
|
||||
local _patch="${FILESDIR}/vala-codegen-posix.patch"
|
||||
msg_normal "Fetching source from $url ...\n"
|
||||
git clone ${url} ${pkgname}-${version}
|
||||
msg_normal "Applying ${_patch} ...\n"
|
||||
cd "${pkgname}-${version}" && git apply ${_patch}
|
||||
}
|
||||
|
||||
pre_configure() {
|
||||
./autogen.sh
|
||||
}
|
||||
|
||||
pvala-codegen-posix_package() {
|
||||
depends="pvala>=0"
|
||||
pkg_install() {
|
||||
vmove all
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue