php
This commit is contained in:
parent
f8b222b925
commit
6343429850
|
@ -1,6 +1,6 @@
|
|||
. lib/lsb/init-functions
|
||||
if [ ! -f etc/httpd/httpd.conf ]; then
|
||||
cp etc/httpd/httpd.conf{.example,}
|
||||
. /lib/lsb/init-functions
|
||||
if [ ! -f /etc/httpd/httpd.conf ]; then
|
||||
cp /etc/httpd/httpd.conf{.example,}
|
||||
log_success_msg "${WARNING} /etc//httpd/httpd.conf created ${NORMAL}"
|
||||
log_warning_msg "${WARNING} Double check /etc//httpd/httpd.conf and adapted to your needs ${NORMAL}"
|
||||
fi
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Description: An open-source HTTP server for modern operating systems.
|
||||
# URL: http://httpd.apache.org/ABOUT_APACHE.html
|
||||
# Packager: http://httpd.apache.org/
|
||||
# Packager: milisarge@gmail.com
|
||||
# Depends on: pcre apr-util sqlite expat
|
||||
|
||||
name=apache
|
||||
|
|
|
@ -1,19 +0,0 @@
|
|||
# Description: French dictionaries for Aspell
|
||||
# URL: http://aspell.net
|
||||
# Packager: tnut at nutyx dot org
|
||||
# Depends on: aspell
|
||||
_version=0.50-3
|
||||
|
||||
name=aspell-fr
|
||||
version=0.50.3
|
||||
release=1
|
||||
|
||||
source=(ftp://ftp.gnu.org/gnu/aspell/dict/fr/$name-$_version.tar.bz2)
|
||||
|
||||
build() {
|
||||
cd aspell-fr*
|
||||
./configure
|
||||
make
|
||||
make DESTDIR=$PKG install
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
# Description: Turkish dictionaries for Aspell
|
||||
# URL: http://aspell.net
|
||||
# Packager: milisarge@gmail.com
|
||||
# Depends on: aspell
|
||||
_version=0.50-3
|
||||
|
||||
name=aspell-tr
|
||||
version=0.50.3
|
||||
release=1
|
||||
|
||||
source=(ftp://ftp.gnu.org/gnu/aspell/dict/tr/$name-$_version.tar.bz2)
|
||||
|
||||
build() {
|
||||
cd aspell-tr*
|
||||
./configure
|
||||
make
|
||||
make DESTDIR=$PKG install
|
||||
}
|
||||
|
|
@ -1,18 +0,0 @@
|
|||
# Description: Graphical version of the NuTyX cards package manager
|
||||
# Url: https://github.com/NuTyX/cards
|
||||
# Maintainer: tnut at nutyx dot org
|
||||
# Packager: tnut at nutyx dot org
|
||||
# Depends on : libcards ssh-askpass xorg-proto fltk1 xorg-libx11 xorg-libxext xorg-libxfixes xorg-libxft xorg-libxinerama xorg-mesa
|
||||
|
||||
run=(ssh-askpass)
|
||||
name=flcards
|
||||
version=1.99.7
|
||||
release=1
|
||||
|
||||
source=(http://downloads.nutyx.org/files/cards-$version.tar.gz)
|
||||
build() {
|
||||
cd cards-$version
|
||||
make flcards
|
||||
cd fltk
|
||||
make DESTDIR=$PKG install
|
||||
}
|
|
@ -1,7 +1,7 @@
|
|||
# Description: Used in dynamic web sites, it allows programming code to be directly embedded into the HTML markup.
|
||||
# URL: http://www.php.net
|
||||
# Packager: berlius at nutyx dot com
|
||||
# Depends on: apache libxml2 aspell aspell-fr libxslt enchant pcre pth freetype libexif libjpeg-turbo libpng libtiff xorg curl db mariadb openldap postgresql sqlite unixodbc openssl cyrus-sasl kerberos
|
||||
# Depends on: apache libxml2 aspell aspell-tr libxslt enchant pcre pth freetype libexif libjpeg-turbo libpng libtiff xorg curl db mariadb openldap postgresql sqlite unixodbc openssl cyrus-sasl kerberos
|
||||
|
||||
description="Used in dynamic web sites, it allows programming code to be directly embedded into HTML"
|
||||
name=php
|
||||
|
@ -9,7 +9,7 @@ version=5.6.16
|
|||
release=1
|
||||
|
||||
source=(http://php.net/distributions/$name-$version.tar.xz
|
||||
http://mirror.internode.on.net/pub/php/manual/php_manual_fr.tar.gz)
|
||||
http://mirror.internode.on.net/pub/php/manual/php_manual_tr.tar.gz)
|
||||
|
||||
build () {
|
||||
|
||||
|
|
|
@ -0,0 +1,18 @@
|
|||
# Description: A program to record a desktop session
|
||||
# URL: http://recordmydesktop.sourceforge.net/
|
||||
# Maintainer: Jose V Beneyto, sepen at crux dot nu
|
||||
# Packager: milisarge@gmail.com
|
||||
# Depends on: libtheora xorg-libxdamage xorg-libxext
|
||||
|
||||
name=recordmydesktop
|
||||
version=0.3.8.1
|
||||
release=1
|
||||
source=(http://download.sourceforge.net/$name/$name-$version.tar.gz)
|
||||
|
||||
build() {
|
||||
cd $name-$version
|
||||
./configure --prefix=/usr \
|
||||
--mandir=/usr/man
|
||||
make
|
||||
make DESTDIR=$PKG install
|
||||
}
|
Loading…
Reference in New Issue