blob: 726847a9b221943a60279b84404f7f334c81426d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Description: Client IRC du futur
# URL: http://irssi.org/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on:
# Run on:
name=irssi
version=0.8.15
release=1
source=(http://irssi.org/files/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure --prefix=/usr \
--sysconfdir=/etc \
--enable-ipv6 \
--with-textui \
--with-proxy
make
make DESTDIR=$PKG install
find $PKG \
-name .packlist -or \
-name perllocal.pod -or \
-name '*.bs' -or \
-name autosplit.ix | xargs rm
}
|