diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-06-25 16:48:48 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-06-25 17:47:47 +0300 |
commit | b5f2dcca2affb4d92663d870acba2b4ca1611d00 (patch) | |
tree | 5286465d42e6b7e60735751b1aea6443dc386fb0 | |
parent | 90982a892d9820663bde5f62ccc333841a547d69 (diff) | |
download | plus-b5f2dcca2affb4d92663d870acba2b4ca1611d00.tar.gz plus-b5f2dcca2affb4d92663d870acba2b4ca1611d00.tar.bz2 plus-b5f2dcca2affb4d92663d870acba2b4ca1611d00.tar.xz plus-b5f2dcca2affb4d92663d870acba2b4ca1611d00.zip |
add PKGBUILD to build system.
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | Makefile.am | 1 | ||||
-rw-r--r-- | PKGBUILD.in (renamed from PKGBUILD) | 2 | ||||
-rwxr-xr-x | configure.ac | 1 |
4 files changed, 4 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore index 0bbca0a9e..e0e769d15 100644 --- a/.gitignore +++ b/.gitignore @@ -35,6 +35,7 @@ po/POTFILES .deps stamp-h1 manaplus.spec +PKGBUILD # files created by CMake CMakeFiles/ diff --git a/Makefile.am b/Makefile.am index 375c18158..c6a9242f3 100644 --- a/Makefile.am +++ b/Makefile.am @@ -20,6 +20,7 @@ EXTRA_DIST = $(desktop_DATA) \ AUTHORS \ ChangeLog \ INSTALL \ + PKGBUILD \ README \ README.cmake @@ -1,7 +1,7 @@ # Maintainer: Aline Ferraz <freya.df@gmail.com> pkgname=manaplus-git -pkgver=1.1.6.12 +pkgver=@PACKAGE_VERSION@ pkgrel=1 pkgdesc="ManaPlus is a 2D MMORPG game advanced client for games based on eAthena fork The Mana World (tAthena) also for other forks like Evol. More info here: http://manaplus.evolonline.org" arch=('i686' 'x86_64') diff --git a/configure.ac b/configure.ac index 3bc6ae6c6..f7c82ef75 100755 --- a/configure.ac +++ b/configure.ac @@ -218,6 +218,7 @@ AM_CONDITIONAL(ENABLE_GOOGLE_PROFILER, test x$googleprofiler_enabled = xtrue) AC_CONFIG_FILES([ manaplus.spec Makefile +PKGBUILD src/Makefile data/Makefile data/fonts/Makefile |