addition of PKGBUILD for archlinux

This commit is contained in:
Nikos Kouremenos 2005-03-22 14:09:21 +00:00
parent 7793eb2c98
commit 91829c57fa
12 changed files with 27 additions and 3 deletions

View File

@ -1,2 +1,3 @@
Yann Le Boulanger (asterix AT lagaule.org) Yann Le Boulanger (asterix AT lagaule.org)
Vincent Hanquez (tab AT snarc.org) Vincent Hanquez (tab AT snarc.org)
Nikos Kouremenos (kourem AT gmail.com)

View File

@ -1,4 +1,4 @@
Gajim 0.6 release is here! (TODO) Gajim 0.6 release is here! (23 March 2005)
Version 0.6 of Gajim is now Available. Version 0.6 of Gajim is now Available.
What's new since 0.5.1: What's new since 0.5.1:

View File

@ -1,4 +1,4 @@
VERSION ?= 0.51 VERSION ?= 0.6
MODULES = common plugins/gtkgui MODULES = common plugins/gtkgui
PREFIX = /usr PREFIX = /usr
@ -29,7 +29,7 @@ dist:
-rm -rf gajim-$(VERSION) -rm -rf gajim-$(VERSION)
mkdir gajim-$(VERSION) mkdir gajim-$(VERSION)
cp -r plugins debian scripts common Core doc Messages sounds gajim-$(VERSION)/ cp -r plugins debian scripts common Core doc Messages sounds gajim-$(VERSION)/
cp setup_win32.py gajim.iss AUTHORS gajim.1 gajim.xpm gajim.ico COPYING Makefile gajim.py gajim-$(VERSION) cp setup_win32.py gajim.iss AUTHORS gajim.1 gajim.xpm gajim.ico COPYING Makefile Changelog README gajim.py gajim-$(VERSION)
-find gajim-$(VERSION) -name '.svn' -exec rm -rf {} \; 2> /dev/null -find gajim-$(VERSION) -name '.svn' -exec rm -rf {} \; 2> /dev/null
find gajim-$(VERSION) -name '*.pyc' -exec rm {} \; find gajim-$(VERSION) -name '*.pyc' -exec rm {} \;
find gajim-$(VERSION) -name '*.pyo' -exec rm {} \; find gajim-$(VERSION) -name '*.pyo' -exec rm {} \;

5
README
View File

@ -24,6 +24,11 @@ gajim
or if you don't 'make install' you can also run from gajim folder with or if you don't 'make install' you can also run from gajim folder with
./gajim.py ./gajim.py
TROUBLESHOOTING
If you have python2.3 please manually edit plugins/gtkgui/Makefile and in
CFLAGS line replace python2.4 to python2.3
Enjoy! Enjoy!
(C) 2005 (C) 2005

18
distro_pkgs/PKGBUILD Normal file
View File

@ -0,0 +1,18 @@
# For ArchLinux #
#################
pkgname=gajim
pkgver=0.6
pkgrel=1
pkgdesc="Gajim is a GTK Jabber client"
url="http://www.gajim.org"
license="GPL"
depends=(pygtk)
source=($url/downloads/$pkgname-$pkgver.tar.bz2)
md5sums=(217c5e7f2f1523a5fde4219d238698a6)
build() {
cd $startdir/src/$pkgname-$pkgver
make || return 1
make DESTDIR=$startdir/pkg install
}