-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d514507
commit 7c4ad78
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Maintainer: Peter K. Moss <peter@moss.dk> | ||
pkgname=qMarkdown | ||
pkgver=0.1.2 | ||
pkgrel=1 | ||
pkgdesc="qMarkdown - minimal markdown viewer" | ||
arch=("x86_64") | ||
url="https://github.com/Peterkmoss/qMarkdown" | ||
license=('GPL') | ||
depends=() | ||
makedepends=('qt5-base' | ||
'gcc>=9') | ||
provides=('qmarkdown') | ||
source=("https://github.com/Peterkmoss/qMarkdown/archive/v$pkgver.tar.gz") | ||
|
||
build() { | ||
cd "$pkgname-$pkgver" | ||
make | ||
} | ||
|
||
package() { | ||
cd "$pkgname-$pkgver" | ||
make PREFIX=/usr DESTDIR="$pkgdir" install | ||
} | ||
md5sums=('e01b9d2f283e3ccc037c9d5dded1f710') |