23 lines
586 B
Plaintext
23 lines
586 B
Plaintext
|
# Tanım: Utilities for use with the Reiser file system.
|
|||
|
# URL: http://www.kernel.org/pub/linux/utils/fs/reiserfs/
|
|||
|
# Paketçi: milisarge
|
|||
|
# Gerekler:
|
|||
|
|
|||
|
isim=reiserfsprogs
|
|||
|
surum=3.6.24
|
|||
|
devir=1
|
|||
|
|
|||
|
kaynak=(http://ftp.kernel.org/pub/linux/kernel/people/jeffm/reiserfsprogs/v${surum}/$isim-$surum.tar.xz)
|
|||
|
|
|||
|
|
|||
|
derle() {
|
|||
|
export CFLAGS="$CFLAGS -std=gnu90"
|
|||
|
cd $isim-$surum
|
|||
|
./configure --prefix=/usr \
|
|||
|
--sbindir=/sbin
|
|||
|
make
|
|||
|
make DESTDIR=$PKG install
|
|||
|
ln -sf reiserfsck $PKG/sbin/fsck.reiserfs
|
|||
|
ln -sf mkreiserfs $PKG/sbin/mkfs.reiserfs
|
|||
|
}
|