sqlite3: fix man-page location

This commit is contained in:
Juergen Daubert 2016-01-15 14:08:41 +01:00
parent 3b94c099ec
commit ca269bfb22
2 changed files with 7 additions and 6 deletions

View File

@ -12,6 +12,7 @@ lrwxrwxrwx root/root usr/lib/libsqlite3.so.0 -> libsqlite3.so.0.8.6
-rwxr-xr-x root/root usr/lib/libsqlite3.so.0.8.6
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/sqlite3.pc
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/sqlite3.1.gz
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man1/
-rw-r--r-- root/root usr/share/man/man1/sqlite3.1.gz

View File

@ -5,7 +5,7 @@
name=sqlite3
version=3.10.1
release=1
release=2
_version=$(printf "%i%.2i%.2i%.2i" ${version//./ })
source=(http://www.sqlite.org/2016/sqlite-autoconf-${_version}.tar.gz)
@ -16,8 +16,8 @@ build () {
CFLAGS="-DSQLITE_SECURE_DELETE=1 -DSQLITE_ENABLE_COLUMN_METADATA=1 \
-DSQLITE_ENABLE_UNLOCK_NOTIFY=1 -DSQLITE_ENABLE_DBSTAT_VTAB=1 \
$CFLAGS" \
./configure --prefix=/usr --mandir=/usr/man
./configure --prefix=/usr
make -j1
make
make DESTDIR=$PKG install
}