You are not logged in.
Pages: 1
I maked this PKGBUILD but i have some problems can someone help
# Contributor: Košava <kosava@gmail.com>
pkgname=bcchat
pkgver=2.0
pkgrel=1
pkgdesc="BCChat is developed with the aim to create a chat application which can be run on any network without the need of installing a server or having an internet connection."
arch=('i686' 'x86_64')
url="http://qt-apps.org/content/show.php/BCChat?content=132447"
license=('GPL')
depends=('qt')
source=(http://qt-apps.org/CONTENT/content-files/132447-bcchat-2.0.tbz)
md5sums=('da2f9931a621301eecd8dbd43ce06bd8')build() {
cd $startdir/src/$pkgname-$pkgver
cmake . -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release
make || return 1
make DESTDIR=$startdir/pkg install
}
Offline
replace the last line with something like:
install -Dm755 $srcdir/$pkgname-$pkgver/bcchat $pkgdir/usr/bin/bcchat
[home page] -- [code / configs]
"Once you go Arch, you must remain there for life or else Allan will track you down and break you." -- Bregol
Offline
Thank you, now work fine
Offline
Pages: 1