This repository has been archived on 2025-08-21. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pamac-classic/meson_scripts/install_data.sh

10 lines
142 B
Bash
Executable File

#!/bin/bash
shopt -s extglob
mkdir -p $DESTDIR/$1
if [ -d "$2" ]; then
cp -a $2/!(CMakeLists.txt) $DESTDIR/$1
else
cp -a $2 $DESTDIR/$1
fi