opt/gdb/Pkgfile

22 lines
479 B
Plaintext
Raw Normal View History

# Description: The GNU Debugger (GDB)
# URL: http://sources.redhat.com/gdb/
2006-07-28 16:34:19 +02:00
# Maintainer: Tilman Sauerbeck, tilman at crux dot nu
# Depends on: ncurses
name=gdb
2008-03-29 10:22:07 +01:00
version=6.8
2009-06-11 16:29:16 +02:00
release=2
source=(ftp://ftp.gnu.org/gnu/$name/$name-$version.tar.bz2 gdb.diff)
build() {
cd $name-$version
2009-06-11 16:29:16 +02:00
# fix the build with gcc 4.4:
patch -p1 -i $SRC/gdb.diff
./configure --prefix=/usr
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/{info,share,lib,include}
}