addition of PKGBUILD for archlinux
This commit is contained in:
parent
7793eb2c98
commit
91829c57fa
1
AUTHORS
1
AUTHORS
|
@ -1,2 +1,3 @@
|
|||
Yann Le Boulanger (asterix AT lagaule.org)
|
||||
Vincent Hanquez (tab AT snarc.org)
|
||||
Nikos Kouremenos (kourem AT gmail.com)
|
||||
|
|
|
@ -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.
|
||||
What's new since 0.5.1:
|
||||
|
||||
|
|
4
Makefile
4
Makefile
|
@ -1,4 +1,4 @@
|
|||
VERSION ?= 0.51
|
||||
VERSION ?= 0.6
|
||||
|
||||
MODULES = common plugins/gtkgui
|
||||
PREFIX = /usr
|
||||
|
@ -29,7 +29,7 @@ dist:
|
|||
-rm -rf gajim-$(VERSION)
|
||||
mkdir 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 '*.pyc' -exec rm {} \;
|
||||
find gajim-$(VERSION) -name '*.pyo' -exec rm {} \;
|
||||
|
|
5
README
5
README
|
@ -24,6 +24,11 @@ gajim
|
|||
or if you don't 'make install' you can also run from gajim folder with
|
||||
./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!
|
||||
|
||||
(C) 2005
|
||||
|
|
|
@ -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
|
||||
}
|
Loading…
Reference in New Issue