Compare commits

..

3 Commits

Author SHA1 Message Date
f8304b572a selectdefaultapplication-git: update rev 2021-08-18 19:54:31 +02:00
08215ee860 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:   "???"
2021-08-08 11:14:53 +02:00
2fd2ca48b2 git subrepo clone --branch=master https://aur.archlinux.org/mpdevil.git
subrepo:
  subdir:   "mpdevil"
  merged:   "4f07034"
upstream:
  origin:   "https://aur.archlinux.org/mpdevil.git"
  branch:   "master"
  commit:   "4f07034"
git-subrepo:
  version:  "0.4.3"
  origin:   "???"
  commit:   "???"
2021-08-07 19:28:26 +02:00
6 changed files with 117 additions and 0 deletions

18
mpdevil/.SRCINFO Normal file

@ -0,0 +1,18 @@
pkgbase = mpdevil
pkgdesc = A simple music browser for MPD
pkgver = 1.3.0
pkgrel = 1
url = https://github.com/SoongNoonien/mpdevil
arch = any
license = GPL3
makedepends = python-distutils-extra
depends = python-mpd2
depends = gtk3
depends = libnotify
depends = python-gobject
depends = python-requests
depends = python-beautifulsoup4
source = mpdevil-1.3.0.tar.gz::https://github.com/SoongNoonien/mpdevil/archive/v1.3.0.tar.gz
sha256sums = 3f3c878c1c0d006aa491b1bef584a2c5ec97955ed1e77ba69caa7ebd875e5474
pkgname = mpdevil

12
mpdevil/.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/mpdevil.git
branch = master
commit = 4f070342c1a89b660261f67321f0107ea6ff5c92
parent = 1b77cb73b63893151a989bc951b33c933a8f4030
method = merge
cmdver = 0.4.3

24
mpdevil/PKGBUILD Normal file

@ -0,0 +1,24 @@
# Maintainer: Martin Wagner <martin.wagner.dev@gmail.com>
pkgname=mpdevil
pkgver=1.3.0
pkgrel=1
pkgdesc="A simple music browser for MPD"
arch=('any')
license=('GPL3')
url="https://github.com/SoongNoonien/mpdevil"
depends=('python-mpd2' 'gtk3' 'libnotify' 'python-gobject' 'python-requests' 'python-beautifulsoup4')
makedepends=('python-distutils-extra')
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/SoongNoonien/mpdevil/archive/v${pkgver}.tar.gz")
sha256sums=('3f3c878c1c0d006aa491b1bef584a2c5ec97955ed1e77ba69caa7ebd875e5474')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
python setup.py build
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
}

@ -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

@ -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

@ -0,0 +1,35 @@
# Maintainer: Martin Sandsmark <martin.sandsmark@kde.org>
pkgname=selectdefaultapplication-git
pkgver=r20.99f0b1f
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/
}