Merge branch 'master' of https://github.com/milisarge/malfs-milis
This commit is contained in:
commit
86f5ecec32
|
@ -1,15 +1,18 @@
|
||||||
# Description : Adds communication between KDE and your smartphone
|
# Description : Adds communication between KDE and your smartphone
|
||||||
# URL : https://projects.kde.org/projects/playground/base/kdeconnect-kde
|
# URL : https://projects.kde.org/projects/playground/base/kdeconnect-kde
|
||||||
# Packdeconnectkager : alihan-ozturk28@hotmail.com
|
# Packdeconnectkager : alihan-ozturk28@hotmail.com
|
||||||
# Depends on : kf5-extra-cmake-modules kf5-kio kf5-kcmutils qca-qt5 libfakekey qjson sshfs-fuse hicolor-icon-theme kf5-kwayland
|
# Depends on : git kf5-extra-cmake-modules kf5-kio kf5-kcmutils qca-qt5 libfakekey qjson sshfs-fuse hicolor-icon-theme kf5-kwayland
|
||||||
|
|
||||||
name=kdeconnect
|
name=kdeconnect
|
||||||
version=1.0.1
|
version=0.9g
|
||||||
release=1
|
release=1
|
||||||
|
|
||||||
source=( http://download.kde.org/stable/$name/$version/src/$name-kde-$version.tar.xz)
|
source=()
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
|
|
||||||
|
git clone git://anongit.kde.org/kdeconnect-kde.git
|
||||||
|
|
||||||
mkdir -p build
|
mkdir -p build
|
||||||
cd build
|
cd build
|
||||||
cmake ../kdeconnect-kde \
|
cmake ../kdeconnect-kde \
|
||||||
|
@ -21,4 +24,3 @@ cmake ../kdeconnect-kde \
|
||||||
make
|
make
|
||||||
make DESTDIR=$PKG install
|
make DESTDIR=$PKG install
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,21 @@
|
||||||
|
# Description="Used to retrieve audio CD meta data from the interne"
|
||||||
|
# Url="http://sourceforge.net/projects/libkcddb/"
|
||||||
|
# Packager=alihan-ozturk28@hotmail.com
|
||||||
|
# Depends on: git qt5 kf5-extra-cmake-modules kf5-kconfig kf5-kdoctools kf5-kcodecs kf5-ki18n kf5-kio kf5-kwidgetsaddons kf5-kxmlgui
|
||||||
|
|
||||||
|
name=libkcddb
|
||||||
|
version=26160902
|
||||||
|
release=1
|
||||||
|
|
||||||
|
build() {
|
||||||
|
git clone git://anongit.kde.org/libkcddb.git
|
||||||
|
mkdir build
|
||||||
|
cd build
|
||||||
|
cmake ../$name \
|
||||||
|
-DCMAKE_BUILD_TYPE=Release \
|
||||||
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||||
|
-DCMAKE_INSTALL_LIBDIR=lib \
|
||||||
|
-DBUILD_TESTING=OFF
|
||||||
|
make
|
||||||
|
make DESTDIR=$PKG install
|
||||||
|
}
|
|
@ -4,7 +4,7 @@
|
||||||
# Depends on: kf5-extra-cmake-modules qt5 kf5-baloo plasma-workspace
|
# Depends on: kf5-extra-cmake-modules qt5 kf5-baloo plasma-workspace
|
||||||
|
|
||||||
name=plasma-mediacenter
|
name=plasma-mediacenter
|
||||||
version=5.8.0
|
version=5.7.5
|
||||||
release=1
|
release=1
|
||||||
|
|
||||||
source=( http://download.kde.org/stable/plasma/$version/$name-$version.tar.xz)
|
source=( http://download.kde.org/stable/plasma/$version/$name-$version.tar.xz)
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
|
|
||||||
name=sddm
|
name=sddm
|
||||||
release=1
|
release=1
|
||||||
version=0.13.0
|
version=0.14.0
|
||||||
|
|
||||||
source=( https://github.com/sddm/sddm/releases/download/v$version/${name}-$version.tar.xz
|
source=( https://github.com/sddm/sddm/releases/download/v$version/${name}-$version.tar.xz
|
||||||
sddm.conf
|
sddm.conf
|
||||||
|
@ -13,7 +13,7 @@ source=( https://github.com/sddm/sddm/releases/download/v$version/${name}-$versi
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
source /etc/blfs-bootscripts
|
source /etc/blfs-bootscripts
|
||||||
wget http://www.linuxfromscratch.org/blfs/downloads/stable/$scripts-$scriptsversion.tar.bz2
|
wget http://anduin.linuxfromscratch.org/BLFS/blfs-bootscripts/$scripts-$scriptsversion.tar.bz2
|
||||||
tar xvf $scripts-$scriptsversion.tar.bz2
|
tar xvf $scripts-$scriptsversion.tar.bz2
|
||||||
|
|
||||||
cd ${name}-$version
|
cd ${name}-$version
|
||||||
|
|
|
@ -1,30 +0,0 @@
|
||||||
commit 41caaa08cde60c4fec4bf2e5f9610e2a1b9e6a23
|
|
||||||
Author: Vinson Lee <vlee@freedesktop.org>
|
|
||||||
Date: Thu Feb 5 14:48:53 2015 -0800
|
|
||||||
|
|
||||||
lua: Define LUA_COMPAT_APIINTCASTS for Lua >= 5.3.0 compatibility.
|
|
||||||
|
|
||||||
In Lua 5.3.0, luaL_checkint was deprecated.
|
|
||||||
|
|
||||||
This patch fixes this build error with Lua 5.3.0.
|
|
||||||
|
|
||||||
lua/demux.c: In function ‘vlclua_demux_peek’:
|
|
||||||
lua/demux.c:55:5: error: implicit declaration of function ‘luaL_checkint’ [-Werror=implicit-function-declaration]
|
|
||||||
int n = luaL_checkint( L, 1 );
|
|
||||||
^
|
|
||||||
|
|
||||||
Signed-off-by: Vinson Lee <vlee@freedesktop.org>
|
|
||||||
Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
|
|
||||||
|
|
||||||
diff --git a/modules/lua/vlc.h b/modules/lua/vlc.h
|
|
||||||
index efd94f1..85c7fc1 100644
|
|
||||||
--- a/modules/lua/vlc.h
|
|
||||||
+++ b/modules/lua/vlc.h
|
|
||||||
@@ -38,6 +38,7 @@
|
|
||||||
#include <vlc_stream.h>
|
|
||||||
#include <vlc_demux.h>
|
|
||||||
|
|
||||||
+#define LUA_COMPAT_APIINTCASTS
|
|
||||||
#define LUA_COMPAT_MODULE
|
|
||||||
#include <lua.h> /* Low level lua C API */
|
|
||||||
#include <lauxlib.h> /* Higher level C API */
|
|
|
@ -1,48 +1,30 @@
|
||||||
# Description: The cross-platform media player and streaming server
|
# Description: The cross-platform media player and streaming server
|
||||||
# URL: http://www.videolan.org/vlc/
|
# URL: http://www.videolan.org/vlc/
|
||||||
# Packager: milisarge@gmail.com
|
# Packager: milisarge@gmail.com
|
||||||
# Depends on: libbluray opus qt5 x264 flac libmad glib librsvg alsa-lib xorg-libxinerama xorg-libxpm libvpx libcdio vcdimager live libdvdcss libdvdread libdvdnav libogg libtheora lame faac libvorbis ffmpeg faad2 liba52 libmpeg2 libmpcdec fribidi lua libdv speex
|
# Depends on: libvlc qt5 x264 flac libmad glib dbus libidn librsvg alsa-lib xorg-libxinerama xorg-libxpm libvpx libcdio vcdimager live libdvdcss libdvdread libdvdnav libogg libtheora lame faac libvorbis ffmpeg faad2 liba52 libmpeg2 libmpcdec fribidi lua libdv speex
|
||||||
|
|
||||||
name=vlc
|
name=vlc
|
||||||
version=3.0.0
|
version=3.0.0
|
||||||
_version=20160704
|
release=20160606
|
||||||
release=1
|
|
||||||
|
|
||||||
source=( http://altair.videolan.org/build/source/$name-$version-${_version}-0536.tar.xz
|
source=( http://anduin.linuxfromscratch.org/BLFS/$name/$name-$version-$release.tar.xz)
|
||||||
lua53_compat.patch
|
|
||||||
update-vlc-plugin-cache.hook)
|
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
|
|
||||||
cd vlc-3.0.0-git
|
cd $name-$version-$release
|
||||||
|
|
||||||
RCC=/usr/bin/rcc-qt5
|
sed -i '/seems to be moved/s/^/#/' autotools/ltmain.sh
|
||||||
./bootstrap
|
|
||||||
sed -i -e 's:truetype/ttf-dejavu:TTF:g' modules/visualization/projectm.cpp
|
|
||||||
sed -i -e 's:truetype/freefont:TTF:g' modules/text_renderer/freetype/freetype.c
|
|
||||||
|
|
||||||
CXXFLAGS="$CXXFLAGS -fPIC"
|
|
||||||
|
|
||||||
BUILDCC=gcc \
|
BUILDCC=gcc \
|
||||||
./configure --prefix=/usr \
|
./configure --prefix=/usr \
|
||||||
--sysconfdir=/etc \
|
--disable-swscale \
|
||||||
--enable-qt \
|
--disable-lua \
|
||||||
--disable-rpath \
|
--disable-a52 \
|
||||||
--enable-faad \
|
--disable-avcodec \
|
||||||
--enable-nls \
|
RCC=/usr/bin/rcc-qt5
|
||||||
--enable-lirc \
|
|
||||||
--enable-pvr \
|
|
||||||
--enable-ncurses \
|
|
||||||
--enable-realrtsp \
|
|
||||||
--enable-xosd \
|
|
||||||
--enable-aa \
|
|
||||||
--enable-vcdx \
|
|
||||||
--enable-opus
|
|
||||||
|
|
||||||
make -i
|
|
||||||
make DESTDIR=$PKG docdir=/usr/share/doc/$name-$version install
|
|
||||||
|
|
||||||
install -Dm644 ../update-vlc-plugin-cache.hook $PKG/usr/share/libalpm/hooks/update-vlc-plugin-cache.hook
|
make
|
||||||
|
make DESTDIR=$PKG docdir=/usr/share/doc/$name-$version-release install
|
||||||
|
|
||||||
rm -rf $PKG/usr/share/doc
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,11 +0,0 @@
|
||||||
[Trigger]
|
|
||||||
Type = File
|
|
||||||
Operation = Install
|
|
||||||
Operation = Upgrade
|
|
||||||
Operation = Remove
|
|
||||||
Target = usr/lib/vlc/plugins/*
|
|
||||||
|
|
||||||
[Action]
|
|
||||||
Description = Updating the vlc plugin cache...
|
|
||||||
When = PostTransaction
|
|
||||||
Exec = /usr/lib/vlc/vlc-cache-gen -f /usr/lib/vlc/plugins
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Description : A drop-down terminal emulator based on KDE konsole technology
|
# Description : A drop-down terminal emulator based on KDE konsole technology
|
||||||
# URL: https://www.kde.org/
|
# URL: https://www.kde.org/
|
||||||
# Packager: alihan-ozturk28@hotmail.com
|
# Packager: alihan-ozturk28@hotmail.com
|
||||||
# Depends on: kf5-extra-cmake-modules konsole kf5-karchive kf5-kconfig kf5-kcoreaddons kf5-kcrash kf5-kdbusaddons kf5-kglobalaccel kf5-ki18n kf5-kiconthemes kf5-kio kf5-knewstuff kf5-knotifications kf5-knotifyconfig kf5-kparts kf5-kwidgetsaddons kf5-windowsystem
|
# Depends on: kf5-extra-cmake-modules konsole kf5-karchive kf5-kconfig kf5-kcoreaddons kf5-kcrash kf5-kdbusaddons kf5-kglobalaccel kf5-ki18n kf5-kiconthemes kf5-kio kf5-knewstuff kf5-knotifications kf5-knotifyconfig kf5-kparts kf5-kwidgetsaddons kf5-kwindowsystem
|
||||||
|
|
||||||
name=yakuake
|
name=yakuake
|
||||||
version=3.0.2
|
version=3.0.2
|
||||||
|
|
Loading…
Reference in New Issue