mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 18:07:16 +08:00
33 lines
826 B
Bash
33 lines
826 B
Bash
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (x86_64): Giuseppe calà <jiveaxe@gmail.com>
|
|
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=check
|
|
pkgver=0.9.8
|
|
pkgrel=1
|
|
pkgdesc="A unit testing framework for C"
|
|
arch=('i686' 'x86_64')
|
|
url="http://check.sourceforge.net/"
|
|
license=('LGPL')
|
|
options=('!libtool')
|
|
categories=('programming')
|
|
install=$pkgname.install
|
|
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('5d75e9a6027cde79d2c339ef261e7470')
|
|
|
|
build() {
|
|
cd ${srcdir}/$pkgname-$pkgver
|
|
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install
|
|
|
|
#get rid of the package's info directory, install-info adds entries for us at install-time
|
|
rm ${pkgdir}/usr/share/info/dir || return 1
|
|
}
|