mirror of
https://github.com/arcan1s/pkgbuild.git
synced 2025-04-24 15:37:18 +00:00
bump aur3 branch to current state
This commit is contained in:
parent
d8695d0fd1
commit
3003b3d9d7
@ -1,40 +0,0 @@
|
||||
# Maintainer: Evgeniy Alekseev <arcanis at archlinux dot org>
|
||||
|
||||
pkgname=gromacs_mtdec
|
||||
pkgver=3.3.2
|
||||
pkgrel=2
|
||||
pkgdesc="GROMACS with additional implementation of metadynamics in essential coordinates"
|
||||
arch=('i686' 'x86_64')
|
||||
url="http://web.vscht.cz/spiwokv/index.html"
|
||||
license=('GPL')
|
||||
depends=('fftw' 'lesstif' 'libsm' 'libx11' 'libxml2' 'perl')
|
||||
options=('!libtool')
|
||||
source=(http://web.vscht.cz/spiwokv/mtdec/gromacs332mtdec.tar.gz)
|
||||
md5sums=('545bd6d903d8e8e94bd069c6368b6f25')
|
||||
|
||||
build()
|
||||
{
|
||||
cd "${srcdir}/mtdec"
|
||||
./configure --prefix="/usr" --program-suffix=_mtd
|
||||
make
|
||||
}
|
||||
|
||||
package()
|
||||
{
|
||||
mkdir -p "${pkgdir}/etc/profile.d/"
|
||||
mkdir -p "${pkgdir}/usr/share/bash-completion/completions"
|
||||
cd "${srcdir}/mtdec"
|
||||
make DESTDIR="${pkgdir}" install
|
||||
|
||||
# installing completions in correct location and environment setup script
|
||||
install -D -m755 "${srcdir}/mtdec/scripts/completion.bash" "${pkgdir}/usr/share/bash-completion/completions/gromacs_mtdec"
|
||||
mv "${pkgdir}/usr/bin/GMXRC.bash" "${pkgdir}/etc/profile.d/GMXRC_MTDEC.bash"
|
||||
mv "${pkgdir}/usr/bin/GMXRC.zsh" "${pkgdir}/etc/profile.d/GMXRC_MTDEC.zsh"
|
||||
mv "${pkgdir}/usr/bin/GMXRC.csh" "${pkgdir}/etc/profile.d/GMXRC_MTDEC.csh"
|
||||
sed "s:/usr/bin:/etc/profile.d:g" "${pkgdir}/usr/bin/GMXRC" > "${pkgdir}/etc/profile.d/GMXRC"
|
||||
sed -e "s/GMXRC/GMXRC_MTDEC/g" "${pkgdir}/etc/profile.d/GMXRC" > "${pkgdir}/etc/profile.d/GMXRC_MTDEC"
|
||||
chmod 755 "${pkgdir}/etc/profile.d/GMXRC_MTDEC"
|
||||
rm -f "${pkgdir}/etc/profile.d/GMXRC"
|
||||
rm -f "${pkgdir}/usr/bin/completion.*"
|
||||
rm -f "${pkgdir}/usr/bin/GMXRC"
|
||||
}
|
@ -1,25 +0,0 @@
|
||||
# Maintainer: Evgeniy Alekseev <arcanis at archlinux dot org>
|
||||
# use --force to override default theme system tray icons
|
||||
# do not forget replace theme name
|
||||
|
||||
_themename=Diamond
|
||||
pkgname=krayscale-tray-icon-theme
|
||||
_pkgname=krayscale
|
||||
pkgver=0.9.1
|
||||
pkgrel=1
|
||||
pkgdesc="Grayscale tray icon theme"
|
||||
url="http://kde-look.org/content/show.php/Krayscale+%28Plasma+tray+icons%29?content=133300"
|
||||
arch=('any')
|
||||
license=('GPL')
|
||||
source=("http://kde-look.org/CONTENT/content-files/133300-${_pkgname}_${pkgver}.tar.gz")
|
||||
depends=('librsvg')
|
||||
md5sums=('d80b398f5ff6e81b23d3bd7ffc341c22')
|
||||
|
||||
package() {
|
||||
install -dm755 "${pkgdir}/usr/share/apps/desktoptheme/${_themename}/icons"
|
||||
install -m644 "${srcdir}/${_pkgname}_${pkgver}/plasmatheme/icons/"*.svgz \
|
||||
-t "${pkgdir}/usr/share/apps/desktoptheme/${_themename}/icons"
|
||||
# workaround for mail client
|
||||
install -m644 "${srcdir}/${_pkgname}_${pkgver}/plasmatheme/icons/kmail.svgz" \
|
||||
"${pkgdir}/usr/share/apps/desktoptheme/${_themename}/icons/mail-unread.svgz"
|
||||
}
|
@ -1,42 +0,0 @@
|
||||
# Maintainer: Evgeniy Alekseev <arcanis at archlinux dot org>
|
||||
|
||||
pkgname=oxygen-transparent-macos
|
||||
_pkgname=oxygen-transparent
|
||||
pkgver=246.f2f067d
|
||||
pkgrel=1
|
||||
pkgdesc="Oxygen style and decoration with support for transparency"
|
||||
arch=('i686' 'x86_64')
|
||||
url="https://projects.kde.org/projects/playground/artwork/oxygen-transparent"
|
||||
license=('GPL' 'LGPL')
|
||||
depends=('kdebase-workspace')
|
||||
makedepends=('cmake' 'git' 'automoc4')
|
||||
provides=(${_pkgname})
|
||||
conflicts=(${_pkgname})
|
||||
source=(git+git://anongit.kde.org/oxygen-transparent
|
||||
oxytrans-macos.patch)
|
||||
md5sums=('SKIP'
|
||||
'543a9d78e4fca3eda262016a37040632')
|
||||
|
||||
pkgver() {
|
||||
cd "${_pkgname}"
|
||||
echo $(git rev-list --count HEAD).$(git rev-parse --short HEAD)
|
||||
}
|
||||
|
||||
prepare() {
|
||||
cd "${srcdir}"
|
||||
patch -p0 < oxytrans-macos.patch
|
||||
}
|
||||
|
||||
build() {
|
||||
cd "${srcdir}/${_pkgname}"
|
||||
cmake -DCMAKE_BUILD_TYPE=RELEASE \
|
||||
-DCMAKE_INSTALL_PREFIX=`kde4-config --prefix`
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "${srcdir}/${_pkgname}"
|
||||
make DESTDIR="${pkgdir}" install
|
||||
}
|
||||
|
||||
# vim:set ts=2 sw=2 et:
|
File diff suppressed because it is too large
Load Diff
17
square-beam-icon-theme/PKGBUILD
Normal file
17
square-beam-icon-theme/PKGBUILD
Normal file
@ -0,0 +1,17 @@
|
||||
# Maintainer: mareex <marcus dot behrendt dot 86 at gmail dot com>
|
||||
|
||||
pkgname=square-beam-icon-theme
|
||||
pkgver=1.0
|
||||
pkgrel=5
|
||||
pkgdesc="Icons set for Linux distribution with more than 30.000 icons included."
|
||||
arch=('any')
|
||||
url="http://gnome-look.org/content/show.php/Square-Beam?content=165094&PHPSESSID=fe02219631ab9c62f787bf3ae835ae41"
|
||||
license=('GPL')
|
||||
source=("http://bit.ly/1sdnAo7")
|
||||
md5sums=('a0b5dbab21e1d0a5fa55a42fce922724')
|
||||
|
||||
package() {
|
||||
mkdir -p $pkgdir/usr/share/icons
|
||||
cp -dr --no-preserve=ownership $srcdir/square-beam/Square-Beam $pkgdir/usr/share/icons/
|
||||
chmod -R u+rwX,go+rX,go-w $pkgdir/usr/share/icons/Square-Beam
|
||||
}
|
38
yarock-qt5/PKGBUILD
Normal file
38
yarock-qt5/PKGBUILD
Normal file
@ -0,0 +1,38 @@
|
||||
# Maintainer: Evgeniy Alekseev <arcanis at archlinux dot org>
|
||||
# Contributor: Košava <kosava at archlinux dot us>
|
||||
|
||||
pkgname=yarock-qt5
|
||||
pkgver=1.1.2
|
||||
pkgrel=2
|
||||
pkgdesc="Qt Modern Music Player with collection browse based on cover art"
|
||||
arch=('i686' 'x86_64')
|
||||
url="https://launchpad.net/yarock"
|
||||
license=('GPL3')
|
||||
makedepends=('cmake' 'mpv')
|
||||
depends=('qt5-x11extras' 'phonon-qt5' 'taglib')
|
||||
optdepends=('mpv: alternative (working) engine')
|
||||
source=("https://launchpad.net/yarock/1.x/${pkgver}/+download/Yarock_${pkgver}_source.tar.gz"
|
||||
"phonon.patch")
|
||||
md5sums=('88733d9bed252c132a378dfecb158697'
|
||||
'd6f84a05159c8b7035723cbdeb6fc611')
|
||||
|
||||
prepare() {
|
||||
patch -p0 -i "${srcdir}/phonon.patch"
|
||||
}
|
||||
|
||||
build() {
|
||||
mkdir build
|
||||
cd build
|
||||
cmake "../Yarock_${pkgver}_source" \
|
||||
-DCMAKE_BUILD_TYPE=Release \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||
-DENABLE_QT5=1 \
|
||||
-DENABLE_MPV=ON
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd build
|
||||
make DESTDIR="${pkgdir}" install
|
||||
}
|
||||
|
12
yarock-qt5/phonon.patch
Normal file
12
yarock-qt5/phonon.patch
Normal file
@ -0,0 +1,12 @@
|
||||
diff -ruN Yarock_1.1.2_source-orig/src/core/player/phonon/CMakeLists.txt Yarock_1.1.2_source/src/core/player/phonon/CMakeLists.txt
|
||||
--- Yarock_1.1.2_source-orig/src/core/player/phonon/CMakeLists.txt 2015-05-21 00:42:46.627611703 +0300
|
||||
+++ Yarock_1.1.2_source/src/core/player/phonon/CMakeLists.txt 2015-05-21 00:43:25.852867232 +0300
|
||||
@@ -34,7 +34,7 @@
|
||||
|
||||
|
||||
if (ENABLE_QT5)
|
||||
- INCLUDE_DIRECTORIES( ${PHONON_INCLUDE_DIR}/phonon4qt5 )
|
||||
+ INCLUDE_DIRECTORIES( /usr/include/phonon4qt5 )
|
||||
else (ENABLE_QT5)
|
||||
INCLUDE_DIRECTORIES( ${PHONON_INCLUDES} )
|
||||
endif (ENABLE_QT5)
|
Loading…
Reference in New Issue
Block a user