mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
29 lines
812 B
Bash
29 lines
812 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
# from AUR package http://aur.archlinux.org/packages.php?ID=12130
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=cgdb
|
|
pkgver=0.6.5
|
|
pkgrel=2
|
|
pkgdesc="Curses-based interface to the GNU Debugger"
|
|
arch=('i686' 'x86_64')
|
|
url="http://cgdb.sourceforge.net/"
|
|
license=('GPL')
|
|
depends=('readline>=5.1' 'ncurses' 'gdb')
|
|
source=("http://downloads.sourceforge.net/cgdb/$pkgname-$pkgver.tar.gz")
|
|
md5sums=('f7d054ec74b1431f3f8304195ddd21b4')
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=$startdir/pkg install
|
|
}
|