mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-20 23:32:47 +01:00
28 lines
677 B
Plaintext
28 lines
677 B
Plaintext
# Contributor: Rasmus Thomsen <oss@cogitri.dev>
|
|
# Maintainer: Rasmus Thomsen <oss@cogitri.dev>
|
|
pkgname=gede
|
|
pkgver=2.17.1
|
|
pkgrel=0
|
|
pkgdesc="Gede is a GUI to gdb using Qt5"
|
|
url="http://gede.acidron.com/"
|
|
arch="all"
|
|
license="BSD-2-Clause"
|
|
options="!check" # no tests
|
|
depends="ctags"
|
|
makedepends="openssl-dev qt5-qtbase-dev"
|
|
source="https://gede.dexar.se/uploads/source/gede-$pkgver.tar.xz"
|
|
|
|
build() {
|
|
cd src
|
|
qmake-qt5
|
|
make
|
|
}
|
|
|
|
|
|
package() {
|
|
mkdir -p "$pkgdir"/usr/bin
|
|
install -m0755 src/gede "$pkgdir"/usr/bin/
|
|
}
|
|
|
|
sha512sums="a06fb66cea49cb0091f6cb76083cadfe7cfb22a6b62d671657cfe09bfba3beff954fa6114c831398537da1e002e72fd7cad3e658f758821be293574d6878242e gede-2.17.1.tar.xz"
|