X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from uni-sb.de (mail.uni-sb.de [134.96.252.33]) by mail.alpinelinux.org (Postfix) with ESMTP id 83E5CDD77D6 for ; Thu, 9 Jun 2011 22:56:13 +0000 (UTC) Received: from mail.cs.uni-sb.de (mail.cs.uni-saarland.de [134.96.254.200]) by uni-sb.de (8.14.5/2011051800) with ESMTP id p59Mu7Cv015368 for ; Fri, 10 Jun 2011 00:56:07 +0200 (CEST) Received: from alan.cs.uni-sb.de (alan.cs.uni-saarland.de [134.96.243.128]) by mail.cs.uni-sb.de (8.14.5/2011051800) with ESMTP id p59Mu8Jm013660 for ; Fri, 10 Jun 2011 00:56:08 +0200 (CEST) Received: from emile (emile.cs.uni-saarland.de [134.96.243.162]) by alan.cs.uni-sb.de (Postfix) with ESMTP id 9896B2703A8; Fri, 10 Jun 2011 00:56:07 +0200 (CEST) Received: from localhost.rz.uni-saarland.de ([127.0.0.1] helo=emile) by emile with smtp (Exim 4.71) (envelope-from ) id 1QUo91-0003Gu-D2; Fri, 10 Jun 2011 00:56:07 +0200 Date: Fri, 10 Jun 2011 00:56:07 +0200 From: mw@alan.cs.uni-sb.de To: alpine-devel@lists.alpinelinux.org Cc: mw@alan.cs.uni-sb.de Subject: [alpine-devel] APKBUILD for urxvt Message-ID: <4df14f87.r9hwZ04k12lMNGvA%mw@alan.cs.uni-sb.de> User-Agent: Heirloom mailx 12.4 7/29/08 X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=_4df14f87.6lPCKGZfNjO2zaZIXkko0OD8dyYMyCdbgi23AozP3uIVkBAw" X-DCC-EATSERVER-Metrics: mail.cs.uni-saarland.de; whitelist This is a multi-part message in MIME format. --=_4df14f87.6lPCKGZfNjO2zaZIXkko0OD8dyYMyCdbgi23AozP3uIVkBAw Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi all, I've packaged urxvt alpine because I think it's important enough to be packaged by any distro also packaging X11... I'm not interested in keeping the maintainership for the package though, so maybe someone else might want to take over from this point; my work here is done and I'm not sure whether or not I'll be even using alpine in future at all. If you don't plan to add it to the repo, it might serve as a reference for other people who just want to build it. Please keep me in CC for this thread, as I don't plan on subscribing to this list. Best regards, Moritz Wilhelmy --=_4df14f87.6lPCKGZfNjO2zaZIXkko0OD8dyYMyCdbgi23AozP3uIVkBAw Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="urxvt.APKBUILD" # Totally not stolen from archlinux at all... # modified by me pkgname=rxvt-unicode pkgver=9.11 pkgrel=0 pkgdesc='rxvt fork with improved unicode support' arch=all url='http://software.schmorp.de/pkg/rxvt-unicode.html' license='GPL' depends='libgcc libxft gdk-pixbuf perl' depends_dev='perl-dev' makedepends='perl-dev' source="http://dist.schmorp.de/rxvt-unicode/$pkgname-$pkgver.tar.bz2" md5sums='1bed5bfeed026e0bfafa0e9e4f62aa37 rxvt-unicode-9.11.tar.bz2' build() { cd "$srcdir/$pkgname-$pkgver" ./configure --prefix=/usr \ --with-terminfo=/usr/share/terminfo \ --enable-256-color \ --enable-font-styles \ --enable-xim \ --enable-keepscrolling \ --enable-selectionscrolling \ --enable-smart-resize \ --enable-pixbuf \ --disable-transparency \ --disable-utmp \ --disable-wtmp \ --disable-lastlog \ --disable-frills make } package() { cd "$srcdir/$pkgname-$pkgver" install -d "$pkgdir/usr/share/terminfo" export TERMINFO="$pkgdir/usr/share/terminfo" make DESTDIR="$pkgdir" install } --=_4df14f87.6lPCKGZfNjO2zaZIXkko0OD8dyYMyCdbgi23AozP3uIVkBAw-- --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---