File: build_sdist.sh

package info (click to toggle)
sentencepiece 0.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 53,912 kB
  • sloc: cpp: 190,245; python: 1,776; xml: 231; perl: 198; sh: 58; pascal: 50; makefile: 23
file content (11 lines) | stat: -rwxr-xr-x 255 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

mkdir -p sentencepiece

for i in CMakeLists.txt LICENSE README.md VERSION.txt cmake config.h.in  sentencepiece.pc.in src third_party
do
  echo "copying ../${i} sentencepiece/${i}"
  cp -f -R "../${i}" sentencepiece
done

python3 setup.py sdist