123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- # Build recipe for hdparm.
- #
- # Copyright (c) 2018 Matias Fonzo, <selk@dragora.org>.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- program=hdparm
- version=9.56
- release=1
- # Set 'outdir' for a nice and well-organized output directory
- outdir="${outdir}/${arch}/tools"
- tarname=${program}-${version}.tar.gz
- # Remote source(s)
- fetch=http://downloads.sourceforge.net/project/hdparm/hdparm/$tarname
- description="
- Set ATA/SATA drive parameters.
- The hdparm package contains a utility that is useful for
- controlling ATA/SATA controllers and hard drives both to
- increase performance and sometimes to increase stability.
- "
- homepage=http://sourceforge.net/projects/hdparm/
- license=BSD
- # Source documentation
- docs="Changelog LICENSE.TXT README* TODO hdparm.lsm"
- docsdir="${docdir}/${program}-${version}"
- build()
- {
- set -e
- unpack "${tardir}/$tarname"
- cd "$srcdir"
- # Set sane permissions
- chmod -R u+w,go-w,a+rX-s .
- # Change optimization level
- sed -i "s%-O2%${QICFLAGS}%" Makefile
- # Compile and install it as static
- make -j${jobs} LDFLAGS="$QILDFLAGS -static" \
- binprefix=/usr DESTDIR="$destdir" install
- lzip -9 "${destdir}/${mandir}/man8/hdparm.8"
- # Copy documentation
- mkdir -p "${destdir}${docsdir}"
- cp -p $docs "${destdir}${docsdir}/"
- }
|