git subrepo clone --branch=master https://aur.archlinux.org/selectdefaultapplication-git.git
subrepo: subdir: "selectdefaultapplication-git" merged: "716b351" upstream: origin: "https://aur.archlinux.org/selectdefaultapplication-git.git" branch: "master" commit: "716b351" git-subrepo: version: "0.4.3" origin: "???" commit: "???"
This commit is contained in:
parent
2fd2ca48b2
commit
08215ee860
16
selectdefaultapplication-git/.SRCINFO
Normal file
16
selectdefaultapplication-git/.SRCINFO
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
pkgbase = selectdefaultapplication-git
|
||||||
|
pkgdesc = A very simple application that lets you define default applications on Linux in a sane way
|
||||||
|
pkgver = r19.73a7579
|
||||||
|
pkgrel = 1
|
||||||
|
url = https://github.com/sandsmark/selectdefaultapplication
|
||||||
|
arch = i686
|
||||||
|
arch = x86_64
|
||||||
|
license = GPL
|
||||||
|
makedepends = git
|
||||||
|
depends = qt5-base
|
||||||
|
depends = hicolor-icon-theme
|
||||||
|
source = git://github.com/sandsmark/selectdefaultapplication.git
|
||||||
|
md5sums = SKIP
|
||||||
|
|
||||||
|
pkgname = selectdefaultapplication-git
|
||||||
|
|
12
selectdefaultapplication-git/.gitrepo
Normal file
12
selectdefaultapplication-git/.gitrepo
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
; DO NOT EDIT (unless you know what you are doing)
|
||||||
|
;
|
||||||
|
; This subdirectory is a git "subrepo", and this file is maintained by the
|
||||||
|
; git-subrepo command. See https://github.com/git-commands/git-subrepo#readme
|
||||||
|
;
|
||||||
|
[subrepo]
|
||||||
|
remote = https://aur.archlinux.org/selectdefaultapplication-git.git
|
||||||
|
branch = master
|
||||||
|
commit = 716b351f0a75412a9657f10aba5b2ebfbf386627
|
||||||
|
parent = 2fd2ca48b28f97edd77b850505ff374ee5ae0606
|
||||||
|
method = merge
|
||||||
|
cmdver = 0.4.3
|
35
selectdefaultapplication-git/PKGBUILD
Normal file
35
selectdefaultapplication-git/PKGBUILD
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
# Maintainer: Martin Sandsmark <martin.sandsmark@kde.org>
|
||||||
|
|
||||||
|
pkgname=selectdefaultapplication-git
|
||||||
|
pkgver=r19.73a7579
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc='A very simple application that lets you define default applications on Linux in a sane way'
|
||||||
|
arch=('i686' 'x86_64')
|
||||||
|
url='https://github.com/sandsmark/selectdefaultapplication'
|
||||||
|
license=('GPL')
|
||||||
|
depends=('qt5-base' 'hicolor-icon-theme')
|
||||||
|
makedepends=('git')
|
||||||
|
source=("git://github.com/sandsmark/selectdefaultapplication.git")
|
||||||
|
md5sums=('SKIP')
|
||||||
|
|
||||||
|
pkgver() {
|
||||||
|
cd selectdefaultapplication
|
||||||
|
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
|
||||||
|
}
|
||||||
|
|
||||||
|
build() {
|
||||||
|
cd selectdefaultapplication
|
||||||
|
qmake
|
||||||
|
make
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cd selectdefaultapplication
|
||||||
|
install -dm755 ${pkgdir}/usr/bin/
|
||||||
|
install -m755 selectdefaultapplication ${pkgdir}/usr/bin/
|
||||||
|
|
||||||
|
install -dm755 ${pkgdir}/usr/share/applications/
|
||||||
|
install -m644 selectdefaultapplication.desktop ${pkgdir}/usr/share/applications/
|
||||||
|
install -dm755 ${pkgdir}/usr/share/icons/hicolor/48x48/apps/
|
||||||
|
install -m644 selectdefaultapplication.png ${pkgdir}/usr/share/icons/hicolor/48x48/apps/
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user