mirror of
https://github.com/archlinux/aur.git
synced 2026-03-07 01:32:58 +01:00
Initial PKGBUILD status as of 28.11.2014
This commit is contained in:
commit
e9c764d46d
3 changed files with 51 additions and 0 deletions
16
.SRCINFO
Normal file
16
.SRCINFO
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
pkgbase = beediff
|
||||
pkgdesc = A program for file comparing.
|
||||
pkgver = 1.9
|
||||
pkgrel = 1
|
||||
url = http://www.beesoft.org/index.php?id=beediff
|
||||
arch = i686
|
||||
arch = x86_64
|
||||
license = GPL
|
||||
depends = qt
|
||||
source = http://www.beesoft.org/download/beediff_1.9_src.tar.gz
|
||||
source = beediff.desktop
|
||||
md5sums = be89d5d512920347ad04ef76dd8458a7
|
||||
md5sums = dde69ea8eb1607560bd934f51d32545c
|
||||
|
||||
pkgname = beediff
|
||||
|
||||
25
PKGBUILD
Normal file
25
PKGBUILD
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
# Contributor: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
|
||||
|
||||
pkgname=beediff
|
||||
pkgver=1.9
|
||||
pkgrel=1
|
||||
pkgdesc="A program for file comparing."
|
||||
arch=('i686' 'x86_64')
|
||||
url="http://www.beesoft.org/index.php?id=beediff"
|
||||
license=('GPL')
|
||||
depends=('qt')
|
||||
source=(http://www.beesoft.org/download/${pkgname}_${pkgver}_src.tar.gz \
|
||||
$pkgname.desktop)
|
||||
|
||||
md5sums=('be89d5d512920347ad04ef76dd8458a7'
|
||||
'dde69ea8eb1607560bd934f51d32545c')
|
||||
|
||||
build() {
|
||||
cd "${srcdir}/$pkgname"
|
||||
|
||||
qmake $pkgname.pro
|
||||
make || return 1
|
||||
install -D -m755 "$pkgname" "${pkgdir}/usr/bin/$pkgname" || return 1
|
||||
install -D -m644 "img/$pkgname.png" "${pkgdir}/usr/share/pixmaps/$pkgname.png" || return 1
|
||||
install -D -m644 "${srcdir}/$pkgname.desktop" "${pkgdir}/usr/share/applications/$pkgname.desktop" || return 1
|
||||
}
|
||||
10
beediff.desktop
Normal file
10
beediff.desktop
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
[Desktop Entry]
|
||||
Name=BeeDiff
|
||||
GenericName=Beesoft Differ
|
||||
Exec=beediff
|
||||
Comment=A program for file comparing
|
||||
Comment[cs]=Program pro porovnávání souborů
|
||||
Terminal=false
|
||||
Type=Application
|
||||
Categories=Utility;Qt;
|
||||
Icon=beediff
|
||||
Loading…
Add table
Reference in a new issue