mirror of
https://aur.archlinux.org/kfiredragonhelper.git
synced 2024-12-26 04:34:13 +00:00
Initial upload
This commit is contained in:
commit
b35bbdf9b5
19
.SRCINFO
Normal file
19
.SRCINFO
Normal file
@ -0,0 +1,19 @@
|
||||
pkgbase = kfiredragonhelper
|
||||
pkgdesc = FireDragon Integration (kmozillahelper from openSUSE).
|
||||
pkgver = 5.0.5
|
||||
pkgrel = 1
|
||||
url = https://github.com/openSUSE/kmozillahelper
|
||||
arch = i686
|
||||
arch = x86_64
|
||||
license = MIT
|
||||
makedepends = cmake
|
||||
makedepends = extra-cmake-modules
|
||||
makedepends = git
|
||||
depends = kio
|
||||
depends = knotifications
|
||||
depends = kwindowsystem
|
||||
depends = ki18n
|
||||
source = git+https://gitlab.com/dr460nf1r3/kfiredragonhelper.git
|
||||
md5sums = SKIP
|
||||
|
||||
pkgname = kfiredragonhelper
|
25
PKGBUILD
Normal file
25
PKGBUILD
Normal file
@ -0,0 +1,25 @@
|
||||
pkgname=kfiredragonhelper
|
||||
pkgver=5.0.5
|
||||
pkgrel=1
|
||||
#epoch=1
|
||||
pkgdesc="FireDragon Integration (kmozillahelper from openSUSE)."
|
||||
url="https://github.com/openSUSE/kmozillahelper"
|
||||
arch=("i686" "x86_64")
|
||||
license=('MIT')
|
||||
depends=("kio" "knotifications" "kwindowsystem" "ki18n")
|
||||
makedepends=("cmake" "extra-cmake-modules" "git")
|
||||
source=(git+https://gitlab.com/dr460nf1r3/kfiredragonhelper.git)
|
||||
md5sums=('SKIP')
|
||||
|
||||
build() {
|
||||
mkdir -p build
|
||||
cd build
|
||||
cmake -DCMAKE_INSTALL_PREFIX=/usr -DBUILD_TESTING=OFF -DCMAKE_BUILD_TYPE=Release ../${pkgname}
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
make -C build DESTDIR="$pkgdir" install
|
||||
install -Dm644 "$pkgname/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user