[arch-ports] alunn port for ppc
do you think is possible to make a port of this tool for PPC arch? alunn <http://nedrebo.org/kode/alunn>
gianluca mazza wrote:
do you think is possible to make a port of this tool for PPC arch? alunn <http://nedrebo.org/kode/alunn>
Ok, I tryed to install it, I only changed in source the feed rss with my country archlinux feed. (we haven't feeds for archppc?) This app automatic search from pacman mirrors, so it's not necessary to modify them. I've this error when I try to launch it: [gianluca@ArchPowePC ~]$ alunn [2007-07-07 01:40] [WARNING] System is not able to show notifications. [2007-07-07 01:40] ALUNN starting, first run in 5 min. It's ok I think, but there is no notify. An other question: how can you build a package for binary install from source? I wanna try to compile some program to share.
Am Samstag, den 14.07.2007, 01:46 +0200 schrieb gianluca mazza:
gianluca mazza wrote: An other question: how can you build a package for binary install from source? I wanna try to compile some program to share.
for a start: http://aur.archlinux.org http://wiki.archlinux.org/index.php/ABS_-_The_Arch_Build_System http://wiki.archlinux.org/index.php/AUR http://wiki.archlinux.org/index.php/Arch_CVS_%26_SVN_PKGBUILD_guidelines http://wiki.archlinux.org/index.php/Arch_Packaging_Standards http://wiki.archlinux.org/index.php/Makepkg http://wiki.archlinux.org/index.php/Custom_local_repository note: we don't have abs/cvsup on ppc at this time - Armin
Armin Luntzer wrote:
Am Samstag, den 14.07.2007, 01:46 +0200 schrieb gianluca mazza:
gianluca mazza wrote: An other question: how can you build a package for binary install from source? I wanna try to compile some program to share.
for a start:
http://aur.archlinux.org http://wiki.archlinux.org/index.php/ABS_-_The_Arch_Build_System http://wiki.archlinux.org/index.php/AUR http://wiki.archlinux.org/index.php/Arch_CVS_%26_SVN_PKGBUILD_guidelines http://wiki.archlinux.org/index.php/Arch_Packaging_Standards http://wiki.archlinux.org/index.php/Makepkg http://wiki.archlinux.org/index.php/Custom_local_repository
note: we don't have abs/cvsup on ppc at this time
- Armin
I'm doing a pkg for test, I created PKGBUILD but I don't know what I must write in blank spaces, can you see plz?^^ are necessary to make a pkg correctly? I followed wiki. # Contributor: Gianluca Mazza <homen3@gmail.com> pkgname=xchat-gnome pkgver=0.18 pkgrel=1 pkgdesc="GNOME frontend to the popular X-Chat IRC client." arch=ppc url=http://xchat-gnome.navi.cx/ license=('GPL') depends=('libgnomeui libsexy scrollkeeper gconf') provides=() conflicts=() replaces=() backup=() groups=() options=() install= source=($pkgname-$pkgver.tar.gz) noextract=() md5sums=(generate with makepkg -g) build() { cd $startdir/src/$pkgname-$pkgver ./configure --prefix=/usr make || return 1 make DESTDIR=$startdir/pkg install || return 1 }
gianluca mazza wrote:
Armin Luntzer wrote:
Am Samstag, den 14.07.2007, 01:46 +0200 schrieb gianluca mazza:
gianluca mazza wrote: An other question: how can you build a package for binary install from source? I wanna try to compile some program to share.
for a start:
http://aur.archlinux.org http://wiki.archlinux.org/index.php/ABS_-_The_Arch_Build_System http://wiki.archlinux.org/index.php/AUR http://wiki.archlinux.org/index.php/Arch_CVS_%26_SVN_PKGBUILD_guidelines http://wiki.archlinux.org/index.php/Arch_Packaging_Standards http://wiki.archlinux.org/index.php/Makepkg http://wiki.archlinux.org/index.php/Custom_local_repository
note: we don't have abs/cvsup on ppc at this time
- Armin
I'm doing a pkg for test, I created PKGBUILD but I don't know what I must write in blank spaces, can you see plz?^^ are necessary to make a pkg correctly? I followed wiki.
# Contributor: Gianluca Mazza <homen3@gmail.com> pkgname=xchat-gnome pkgver=0.18 pkgrel=1 pkgdesc="GNOME frontend to the popular X-Chat IRC client." arch=ppc url=http://xchat-gnome.navi.cx/ license=('GPL') depends=('libgnomeui libsexy scrollkeeper gconf') provides=() conflicts=() replaces=() backup=() groups=() options=() install= source=($pkgname-$pkgver.tar.gz) noextract=() md5sums=(generate with makepkg -g)
build() { cd $startdir/src/$pkgname-$pkgver ./configure --prefix=/usr make || return 1 make DESTDIR=$startdir/pkg install || return 1 }
Sorry,the first was bad. this is ok I think: # Contributor: Gianluca Mazza <homen3@gmail.com> pkgname=xchat-gnome pkgver=0.18 pkgrel=1 pkgdesc="GNOME frontend to the popular X-Chat IRC client." arch=ppc url=http://xchat-gnome.navi.cx/ license=('GPL') depends=('libgnomeui' 'libsexy' 'scrollkeeper' 'gconf') source=($pkgname-$pkgver.tar.gz) md5sums=('af93ea5f18ba7bad7a4947362e21d202') build() { cd $startdir/src/$pkgname-$pkgver ./configure --prefix=/usr make || return 1 make DESTDIR=$startdir/pkg install || return 1 }
Am Samstag, den 14.07.2007, 09:42 +0200 schrieb gianluca mazza:
I'm doing a pkg for test, I created PKGBUILD but I don't know what I must write in blank spaces, can you see plz?^^ are necessary to make a pkg correctly? I followed wiki.
Look at the xchat-gnome pkgbuild in arch-cvs for a comparison: http://cvs.archlinux.org/cgi-bin/viewcvs.cgi/gnome/xchat-gnome/?cvsroot=Extra&only_with_tag=CURRENT And please, use the forum at http://bbs.archlinux.org/ (Newbie Corner / PKGBUILDs & ABS Support) since this is not related to porting Archlinux or port specific problems. - Armin
Armin Luntzer wrote:
Am Samstag, den 14.07.2007, 09:42 +0200 schrieb gianluca mazza:
I'm doing a pkg for test, I created PKGBUILD but I don't know what I must write in blank spaces, can you see plz?^^ are necessary to make a pkg correctly? I followed wiki.
Look at the xchat-gnome pkgbuild in arch-cvs for a comparison: http://cvs.archlinux.org/cgi-bin/viewcvs.cgi/gnome/xchat-gnome/?cvsroot=Extra&only_with_tag=CURRENT
And please, use the forum at http://bbs.archlinux.org/ (Newbie Corner / PKGBUILDs & ABS Support) since this is not related to porting Archlinux or port specific problems.
- Armin
Ok, thanks.
participants (2)
-
Armin Luntzer
-
gianluca mazza