utox
This commit is contained in:
parent
15251f34f3
commit
aeb30d5e44
|
@ -0,0 +1,17 @@
|
|||
# Description: An easy to use audio filtering library made from webrtc code.
|
||||
# URL: https://github.com/irungentoo/filter_audio
|
||||
# Maintainer: milisarge
|
||||
# packager: milisarge
|
||||
# Depends on:
|
||||
|
||||
name=filter_audio
|
||||
version=master
|
||||
release=1
|
||||
source=(https://github.com/irungentoo/$name/archive/$version.tar.gz)
|
||||
|
||||
build() {
|
||||
mv $DERLEME_KAYNAKDIZIN/$version.tar.gz $DERLEME_KAYNAKDIZIN/$name-$version.tar.gz
|
||||
cd $name-$version
|
||||
make
|
||||
make DESTDIR=$PKG install
|
||||
}
|
|
@ -0,0 +1,19 @@
|
|||
# Description: sodium is a modern, easy-to-use software library for encryption, decryption, signatures, password hashing and more.
|
||||
# URL: http://doc.libsodium.org/
|
||||
# Maintainer: #teatime (irc.kyber.io), teatime at kyber dot io
|
||||
# packager: milisarge
|
||||
# Depends on :
|
||||
|
||||
name=libsodium
|
||||
version=master
|
||||
release=1
|
||||
source=(https://github.com/jedisct1/$name/archive/$version.tar.gz)
|
||||
|
||||
build () {
|
||||
mv $DERLEME_KAYNAKDIZIN/$version.tar.gz $DERLEME_KAYNAKDIZIN/$name-$version.tar.gz
|
||||
cd $name-$version
|
||||
./autogen.sh
|
||||
./configure --prefix=/usr
|
||||
make
|
||||
make DESTDIR=$PKG install
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
# Description: The VP8 Codec SDK
|
||||
# URL: http://webm.googlecode.com/files/libvpx-v1.1.0.tar.bz2
|
||||
# Packager: pierre at nutyx dot org
|
||||
# Packager: milisarge
|
||||
# Depends on: yasm
|
||||
|
||||
name=libvpx
|
||||
|
@ -16,7 +16,9 @@ chmod -v 644 vpx/*.h
|
|||
mkdir ../libvpx-build
|
||||
cd ../libvpx-build
|
||||
../libvpx-$version/configure --prefix=/usr \
|
||||
--enable-shared --disable-static
|
||||
--enable-shared --disable-static \
|
||||
--disable-install-docs \
|
||||
--disable-install-srcs
|
||||
make
|
||||
|
||||
make DESTDIR=$PKG install
|
||||
|
|
|
@ -1,9 +0,0 @@
|
|||
Pour lancer lxdm de façon automatique, il faut ajouter cette ligne dans le fichier /etc/inittab:
|
||||
|
||||
20:4:respawn:/usr/sbin/lxdm >& /dev/null
|
||||
|
||||
ainsi que changer l'init défaut dans le même fichier:
|
||||
|
||||
id:4:initdefault:
|
||||
|
||||
|
|
@ -1,8 +1,8 @@
|
|||
# Description: Cross-platform 3D audio.
|
||||
# URL: http://connect.creativelabs.com/openal
|
||||
# Maintainer: Danny Rawlins, monster dot romster at gmail dot com
|
||||
# Packager: pierre at nutyx dot org
|
||||
# Depends on: alsa-lib, cmake
|
||||
# Packager: milisarge
|
||||
# Depends on: alsa-lib cmake
|
||||
|
||||
name=openal
|
||||
version=1.16.0
|
||||
|
|
|
@ -0,0 +1,18 @@
|
|||
# Description: The future of online communications core
|
||||
# URL: https://github.com/irungentoo/toxcore
|
||||
# packager: milisarge
|
||||
# Depends on: libconfig libsodium libvpx opus
|
||||
|
||||
name=toxcore
|
||||
version=master
|
||||
release=1
|
||||
source=(https://github.com/irungentoo/$name/archive/$version.tar.gz)
|
||||
|
||||
build() {
|
||||
mv $DERLEME_KAYNAKDIZIN/$version.tar.gz $DERLEME_KAYNAKDIZIN/$name-$version.tar.gz
|
||||
cd $name-$version
|
||||
./autogen.sh
|
||||
./configure --prefix=/usr --disable-daemon --disable-ntox
|
||||
make
|
||||
make DESTDIR=$PKG install
|
||||
}
|
|
@ -1,28 +0,0 @@
|
|||
You may need to enable kernel polling for device media to be detected by udevil.
|
||||
|
||||
TO DETERIME IF KERNEL POLLING IS ENABLED, run these commands:
|
||||
|
||||
cat /sys/module/block/parameters/events_dfl_poll_msecs
|
||||
cat /sys/block/sr0/events_poll_msecs
|
||||
|
||||
If you get 0 or -1 from those commands, then it's probably disabled.
|
||||
|
||||
TO ENABLE KERNEL POLLING PERMANENTLY (survives a reboot), add this command
|
||||
to your /etc/rc.local file (anywhere before the 'exit' line in that file):
|
||||
|
||||
echo 2000 > /sys/module/block/parameters/events_dfl_poll_msecs
|
||||
|
||||
Any number between 2000 and 5000 (milliseconds) should be reasonable - the
|
||||
higher 5000 means poll every 5 seconds, which is less overhead but a little
|
||||
slower.
|
||||
|
||||
OR you can pass this option to the kernel boot command line in grub:
|
||||
|
||||
block.events_dfl_poll_msecs=2000
|
||||
|
||||
You may need to change cifs security if using udevil with cifs-utils.
|
||||
|
||||
TO CHANGE CIFS SECURITY PERMANENTLY (survives a reboot), add this command
|
||||
to your /etc/rc.local file (anywhere before the 'exit' line in that file):
|
||||
|
||||
echo 0x85 > /proc/fs/cifs/SecurityFlags
|
|
@ -0,0 +1,16 @@
|
|||
# Description: Lightweight Tox client
|
||||
# URL: https://github.com/GrayHatter/uTox
|
||||
# packager: milisarge
|
||||
# Depends on: toxcore openal v4l-utils xorg-libxrender hicolor-icon-theme xorg-fontconfig desktop-file-utils xorg-libxext
|
||||
|
||||
name=utox
|
||||
version=develop
|
||||
release=1
|
||||
source=(https://github.com/GrayHatter/$name/archive/$version.tar.gz)
|
||||
|
||||
build() {
|
||||
mv $DERLEME_KAYNAKDIZIN/$version.tar.gz $DERLEME_KAYNAKDIZIN/$name-$version.tar.gz
|
||||
cd uTox-$version
|
||||
make
|
||||
make DESTDIR=$PKG install
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
# Description: A rewrite of NASM to allow for multiple syntax supported (NASM, TASM, GAS, etc.)
|
||||
# URL: http://www.tortall.net/projects/yasm/
|
||||
# Packager: pierre at nutyx dot org
|
||||
# Packager: milisarge
|
||||
# Depends on:
|
||||
|
||||
name=yasm
|
||||
|
|
Loading…
Reference in New Issue